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

Side by Side 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, 5 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 unified diff | Download patch
OLDNEW
(Empty)
1 syntax = "proto2";
2
3 message SearchRequest {
4 optional string query = 1;
5 }
6
7 message SearchResponse {
8 repeated string result = 1;
9 }
10
11 service SearchService {
12 rpc Search (SearchRequest) returns (SearchResponse);
13 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698