[Android WebView] Fix webview perf bot switchover to use org.chromium.webview_shell...
[chromium-blink-merge.git] / chrome / common / safe_browsing / ipc_protobuf_message_test.proto
blob8148461a68b9fc80b997314c1b80dd5c3b53e782
1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 syntax = "proto2";
7 option optimize_for = LITE_RUNTIME;
9 message SubMessage {
10   optional int32 foo = 1;
13 message TestMessage {
14   optional int32 fund_int = 1;
15   optional string op_comp_string = 2;
16   optional bytes op_comp_bytes = 3;
17   optional SubMessage op_comp_sub = 4;
18   repeated SubMessage rep_comp_sub = 5;