Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(618)

Unified Diff: third_party/grpc/src/node/test/echo_service.proto

Issue 1932353002: Initial checkin of gRPC to third_party/ Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/grpc/src/node/test/data/server1.pem ('k') | third_party/grpc/src/node/test/end_to_end_test.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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);
+}
« no previous file with comments | « third_party/grpc/src/node/test/data/server1.pem ('k') | third_party/grpc/src/node/test/end_to_end_test.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698