blob: 786365db1a67b31b5ee094ffccbbcf07f1740483 [file] [log] [blame]
mbonadei7c2c8432017-04-07 07:59:121/*
2 * Copyright (c) 2017 The WebRTC project authors. All Rights Reserved.
3 *
4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree.
9 */
10
11#include <string>
12
Mirko Bonadei92ea95e2017-09-15 04:47:3113#ifndef RTC_BASE_PROTOBUF_UTILS_H_
14#define RTC_BASE_PROTOBUF_UTILS_H_
mbonadei7c2c8432017-04-07 07:59:1215
Henrik Kjellanderec78f1c2017-06-29 05:52:5016#if WEBRTC_ENABLE_PROTOBUF
17
18#include "third_party/protobuf/src/google/protobuf/message_lite.h"
19#include "third_party/protobuf/src/google/protobuf/repeated_field.h"
20
21namespace webrtc {
22
23using google::protobuf::MessageLite;
24using google::protobuf::RepeatedPtrField;
25
26} // namespace webrtc
27
28#endif // WEBRTC_ENABLE_PROTOBUF
mbonadei7c2c8432017-04-07 07:59:1229
Mirko Bonadei92ea95e2017-09-15 04:47:3130#endif // RTC_BASE_PROTOBUF_UTILS_H_