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

Side by Side Diff: chrome/common/common_message_generator.cc

Issue 1004323003: Add support for sending protobuf messages over IPC. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@zip
Patch Set: remove todo and enable for cros Created 5 years, 9 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
« no previous file with comments | « chrome/chrome_tests_unit.gypi ('k') | chrome/common/safe_browsing/DEPS » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // Get basic type definitions. 5 // Get basic type definitions.
6 #define IPC_MESSAGE_IMPL 6 #define IPC_MESSAGE_IMPL
7 #include "chrome/common/common_message_generator.h" 7 #include "chrome/common/common_message_generator.h"
8 8
9 // Generate constructors. 9 // Generate constructors.
10 #include "ipc/struct_constructor_macros.h" 10 #include "ipc/struct_constructor_macros.h"
11 #include "chrome/common/safe_browsing/ipc_protobuf_message_null_macros.h"
11 #include "chrome/common/common_message_generator.h" 12 #include "chrome/common/common_message_generator.h"
12 13
13 // Generate destructors. 14 // Generate destructors.
14 #include "ipc/struct_destructor_macros.h" 15 #include "ipc/struct_destructor_macros.h"
16 #include "chrome/common/safe_browsing/ipc_protobuf_message_null_macros.h"
sky 2015/03/18 21:01:13 Why do you have this include twice?
grt (UTC plus 2) 2015/03/18 21:14:35 ipc_protobuf_message_macros.h will eventually be i
15 #include "chrome/common/common_message_generator.h" 17 #include "chrome/common/common_message_generator.h"
16 18
17 // Generate param traits write methods. 19 // Generate param traits write methods.
18 #include "ipc/param_traits_write_macros.h" 20 #include "ipc/param_traits_write_macros.h"
21 #include "chrome/common/safe_browsing/protobuf_message_write_macros.h"
19 namespace IPC { 22 namespace IPC {
20 #include "chrome/common/common_message_generator.h" 23 #include "chrome/common/common_message_generator.h"
21 } // namespace IPC 24 } // namespace IPC
22 25
23 // Generate param traits read methods. 26 // Generate param traits read methods.
24 #include "ipc/param_traits_read_macros.h" 27 #include "ipc/param_traits_read_macros.h"
28 #include "chrome/common/safe_browsing/protobuf_message_read_macros.h"
25 namespace IPC { 29 namespace IPC {
26 #include "chrome/common/common_message_generator.h" 30 #include "chrome/common/common_message_generator.h"
27 } // namespace IPC 31 } // namespace IPC
28 32
29 // Generate param traits log methods. 33 // Generate param traits log methods.
30 #include "ipc/param_traits_log_macros.h" 34 #include "ipc/param_traits_log_macros.h"
35 #include "chrome/common/safe_browsing/protobuf_message_log_macros.h"
31 namespace IPC { 36 namespace IPC {
32 #include "chrome/common/common_message_generator.h" 37 #include "chrome/common/common_message_generator.h"
33 } // namespace IPC 38 } // namespace IPC
34 39
OLDNEW
« no previous file with comments | « chrome/chrome_tests_unit.gypi ('k') | chrome/common/safe_browsing/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698