Home | History | Annotate | Download | only in compat
      1 // Copyright (c) 2013 The Chromium OS Authors. All rights reserved.
      2 // Use of this source code is governed by a BSD-style license that can be
      3 // found in the LICENSE file.
      4 
      5 #ifndef CHROMIUMOS_WIDE_PROFILING_COMPAT_PROTO_H_
      6 #define CHROMIUMOS_WIDE_PROFILING_COMPAT_PROTO_H_
      7 
      8 #include "google/protobuf/io/zero_copy_stream_impl_lite.h"
      9 #include "google/protobuf/arena.h"
     10 #include "google/protobuf/message.h"
     11 #include "google/protobuf/repeated_field.h"
     12 #include "google/protobuf/text_format.h"
     13 #include "google/protobuf/util/message_differencer.h"
     14 #include "perf_data.pb.h"
     15 #include "perf_stat.pb.h"
     16 
     17 namespace quipper {
     18 
     19 using ::google::protobuf::Arena;
     20 using ::google::protobuf::Message;
     21 using ::google::protobuf::RepeatedField;
     22 using ::google::protobuf::RepeatedPtrField;
     23 using ::google::protobuf::TextFormat;
     24 using ::google::protobuf::io::ArrayInputStream;
     25 using ::google::protobuf::util::MessageDifferencer;
     26 using ::google::protobuf::uint64;
     27 }  // namespace quipper
     28 
     29 #endif  // CHROMIUMOS_WIDE_PROFILING_COMPAT_PROTO_H_
     30