summaryrefslogtreecommitdiffstats
path: root/dbus
diff options
context:
space:
mode:
authorthakis <thakis@chromium.org>2015-08-27 15:23:57 -0700
committerCommit bot <commit-bot@chromium.org>2015-08-27 22:24:32 +0000
commit869255adad624761c098b6e3508b66d5f178a628 (patch)
tree4a2b83b0cc88151a653bcea8cd181e839ad2fcd9 /dbus
parentfac74610cdba9a4d9190c21a5880b751d3324634 (diff)
downloadchromium_src-869255adad624761c098b6e3508b66d5f178a628.zip
chromium_src-869255adad624761c098b6e3508b66d5f178a628.tar.gz
chromium_src-869255adad624761c098b6e3508b66d5f178a628.tar.bz2
Explicitly set test_proto.proto's syntax.
No behavior change, but new protobuf versions warn about the absence of this line and all other our .proto files have it. BUG=525255 Review URL: https://codereview.chromium.org/1318083004 Cr-Commit-Position: refs/heads/master@{#346007}
Diffstat (limited to 'dbus')
-rw-r--r--dbus/test_proto.proto4
1 files changed, 3 insertions, 1 deletions
diff --git a/dbus/test_proto.proto b/dbus/test_proto.proto
index 0a1d06f..1ec128b 100644
--- a/dbus/test_proto.proto
+++ b/dbus/test_proto.proto
@@ -2,6 +2,8 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
+syntax = "proto2";
+
option optimize_for = LITE_RUNTIME;
// This is a simple dummy protocol buffer that is used for testing handling of
@@ -10,4 +12,4 @@ option optimize_for = LITE_RUNTIME;
message TestProto {
optional string text = 1;
optional int32 number = 2;
-} \ No newline at end of file
+}