| Index: third_party/grpc/src/node/test/test_messages.proto
|
| diff --git a/breakpad/linux/breakpad_googletest_includes.h b/third_party/grpc/src/node/test/test_messages.proto
|
| similarity index 84%
|
| copy from breakpad/linux/breakpad_googletest_includes.h
|
| copy to third_party/grpc/src/node/test/test_messages.proto
|
| index aeab31563d41063c69d26fcf9da83b1397e0d67d..9b8cb875eeb0aeed0fbd498ef7b101d23b15f0b7 100644
|
| --- a/breakpad/linux/breakpad_googletest_includes.h
|
| +++ b/third_party/grpc/src/node/test/test_messages.proto
|
| @@ -1,4 +1,4 @@
|
| -// Copyright (c) 2009, Google Inc.
|
| +// Copyright 2015-2016, Google Inc.
|
| // All rights reserved.
|
| //
|
| // Redistribution and use in source and binary forms, with or without
|
| @@ -27,10 +27,17 @@
|
| // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
| // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
| -#ifndef BREAKPAD_GOOGLETEST_INCLUDES_H__
|
| -#define BREAKPAD_GOOGLETEST_INCLUDES_H__
|
| +syntax = "proto3";
|
|
|
| -#include "testing/gtest/include/gtest/gtest.h"
|
| -#include "testing/gmock/include/gmock/gmock.h"
|
| +message LongValues {
|
| + int64 int_64 = 1;
|
| + uint64 uint_64 = 2;
|
| + sint64 sint_64 = 3;
|
| + fixed64 fixed_64 = 4;
|
| + sfixed64 sfixed_64 = 5;
|
| +}
|
|
|
| -#endif // BREAKPAD_GOOGLETEST_INCLUDES_H__
|
| +message SequenceValues {
|
| + bytes bytes_field = 1;
|
| + repeated int32 repeated_field = 2;
|
| +}
|
|
|