| Index: third_party/grpc/src/php/tests/interop/empty.proto
|
| diff --git a/breakpad/linux/breakpad_googletest_includes.h b/third_party/grpc/src/php/tests/interop/empty.proto
|
| similarity index 78%
|
| copy from breakpad/linux/breakpad_googletest_includes.h
|
| copy to third_party/grpc/src/php/tests/interop/empty.proto
|
| index aeab31563d41063c69d26fcf9da83b1397e0d67d..4200d7b5192172572f7d8ab266cbc895acc6c723 100644
|
| --- a/breakpad/linux/breakpad_googletest_includes.h
|
| +++ b/third_party/grpc/src/php/tests/interop/empty.proto
|
| @@ -1,4 +1,5 @@
|
| -// Copyright (c) 2009, Google Inc.
|
| +
|
| +// Copyright 2015, Google Inc.
|
| // All rights reserved.
|
| //
|
| // Redistribution and use in source and binary forms, with or without
|
| @@ -27,10 +28,16 @@
|
| // (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 = "proto2";
|
|
|
| -#include "testing/gtest/include/gtest/gtest.h"
|
| -#include "testing/gmock/include/gmock/gmock.h"
|
| +package grpc.testing;
|
|
|
| -#endif // BREAKPAD_GOOGLETEST_INCLUDES_H__
|
| +// An empty message that you can re-use to avoid defining duplicated empty
|
| +// messages in your project. A typical example is to use it as argument or the
|
| +// return value of a service API. For instance:
|
| +//
|
| +// service Foo {
|
| +// rpc Bar (grpc.testing.EmptyMessage) returns (grpc.testing.EmptyMessage) { };
|
| +// };
|
| +//
|
| +message EmptyMessage {}
|
|
|