OLD | NEW |
(Empty) | |
| 1 |
| 2 //********************************************************************* |
| 3 //* C_Base64 - a simple base64 encoder and decoder. |
| 4 //* |
| 5 //* Copyright (c) 1999, Bob Withers - bwit@pobox.com |
| 6 //* |
| 7 //* This code may be freely used for any purpose, either personal |
| 8 //* or commercial, provided the authors copyright notice remains |
| 9 //* intact. |
| 10 //********************************************************************* |
| 11 |
| 12 #ifndef WEBRTC_BASE_BASE64_H_ |
| 13 #define WEBRTC_BASE_BASE64_H_ |
| 14 |
| 15 |
| 16 // This header is deprecated and is just left here temporarily during |
| 17 // refactoring. See https://bugs.webrtc.org/7634 for more details. |
| 18 #include "webrtc/rtc_base/base64.h" |
| 19 |
| 20 #endif // WEBRTC_BASE_BASE64_H_ |
OLD | NEW |