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

Side by Side Diff: ipc/test_proto.proto

Issue 2968003005: Support Serializing and Deserializing RepeatedField / RepeatedPtrField in IPC::Message (Closed)
Patch Set: Resolve review comments Created 3 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 // Copyright 2017 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.
4
5 syntax = "proto2";
6 option optimize_for = LITE_RUNTIME;
7 package ipc_message_utils_test;
8
9 // This is a simple dummy protocol buffer that is used for testing handling of
10 // protocol buffers in ipc_message_utils.
11
12 message TestMessage1 {
13 optional int32 number = 1;
14 }
15
16 message TestMessage2 {
17 repeated int32 numbers = 1;
18 repeated string strings = 2;
19 repeated TestMessage1 messages = 3;
20 }
OLDNEW
« ipc/ipc_message_protobuf_utils.h ('K') | « ipc/ipc_message_protobuf_utils_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698