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

Unified Diff: test/protos/service.proto

Issue 1196293003: Initial support for generating client and server stubs for Dart. (Closed) Base URL: https://github.com/dart-lang/dart-protoc-plugin.git@master
Patch Set: adddressing nits Created 5 years, 6 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
Index: test/protos/service.proto
diff --git a/test/protos/service.proto b/test/protos/service.proto
new file mode 100644
index 0000000000000000000000000000000000000000..56165523562585dad53802acb4c8c97a3cf486e2
--- /dev/null
+++ b/test/protos/service.proto
@@ -0,0 +1,13 @@
+syntax = "proto2";
+
+message SearchRequest {
+ optional string query = 1;
+}
+
+message SearchResponse {
+ repeated string result = 1;
+}
+
+service SearchService {
+ rpc Search (SearchRequest) returns (SearchResponse);
+}

Powered by Google App Engine
This is Rietveld 408576698