| Index: third_party/grpc/src/node/test/echo_service.proto
|
| diff --git a/third_party/tcmalloc/vendor/src/google/heap-checker.h b/third_party/grpc/src/node/test/echo_service.proto
|
| similarity index 88%
|
| copy from third_party/tcmalloc/vendor/src/google/heap-checker.h
|
| copy to third_party/grpc/src/node/test/echo_service.proto
|
| index 8aa5ea49ca95a2ee8e468bd118ecbf5910c9903c..11b4f18c35d3cf937ad9a482475f7f03e7736d29 100644
|
| --- a/third_party/tcmalloc/vendor/src/google/heap-checker.h
|
| +++ b/third_party/grpc/src/node/test/echo_service.proto
|
| @@ -1,4 +1,4 @@
|
| -// Copyright (c) 2005, Google Inc.
|
| +// Copyright 2015-2016, Google Inc.
|
| // All rights reserved.
|
| //
|
| // Redistribution and use in source and binary forms, with or without
|
| @@ -27,7 +27,13 @@
|
| // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
| // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
| -/* The code has moved to gperftools/. Use that include-directory for
|
| - * new code.
|
| - */
|
| -#include <gperftools/heap-checker.h>
|
| +syntax = "proto3";
|
| +
|
| +message EchoMessage {
|
| + string value = 1;
|
| + int32 value2 = 2;
|
| +}
|
| +
|
| +service EchoService {
|
| + rpc Echo (EchoMessage) returns (EchoMessage);
|
| +}
|
|
|