123456789101112131415161718192021222324252627282930 |
- #include <string>
- #ifndef RTC_BASE_PROTOBUF_UTILS_H_
- #define RTC_BASE_PROTOBUF_UTILS_H_
- #if WEBRTC_ENABLE_PROTOBUF
- #include "third_party/protobuf/src/google/protobuf/message_lite.h"
- #include "third_party/protobuf/src/google/protobuf/repeated_field.h"
- namespace webrtc {
- using google::protobuf::MessageLite;
- using google::protobuf::RepeatedPtrField;
- }
- #endif
- #endif
|