OLD | NEW |
---|---|
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 "content/common/common_param_traits.h" | 7 #include "content/common/common_param_traits.h" |
8 #include "content/common/webkit_param_traits.h" | |
jam
2011/04/15 19:01:21
why is this needed, since you include it in the he
grt (UTC plus 2)
2011/04/15 19:39:54
As it turns out, neither of these are needed, but
jam
2011/04/15 19:42:19
oh, if point.h is needed, then we need to add it t
| |
8 #include "content/common/content_message_generator.h" | 9 #include "content/common/content_message_generator.h" |
9 | 10 |
10 // Generate constructors. | 11 // Generate constructors. |
11 #include "ipc/struct_constructor_macros.h" | 12 #include "ipc/struct_constructor_macros.h" |
12 #include "content/common/content_message_generator.h" | 13 #include "content/common/content_message_generator.h" |
13 | 14 |
14 // Generate destructors. | 15 // Generate destructors. |
15 #include "ipc/struct_destructor_macros.h" | 16 #include "ipc/struct_destructor_macros.h" |
16 #include "content/common/content_message_generator.h" | 17 #include "content/common/content_message_generator.h" |
17 | 18 |
18 // Generate param traits write methods. | 19 // Generate param traits write methods. |
19 #include "ipc/param_traits_write_macros.h" | 20 #include "ipc/param_traits_write_macros.h" |
20 namespace IPC { | 21 namespace IPC { |
21 #include "content/common/content_message_generator.h" | 22 #include "content/common/content_message_generator.h" |
22 } // namespace IPC | 23 } // namespace IPC |
23 | 24 |
24 // Generate param traits read methods. | 25 // Generate param traits read methods. |
25 #include "ipc/param_traits_read_macros.h" | 26 #include "ipc/param_traits_read_macros.h" |
26 namespace IPC { | 27 namespace IPC { |
27 #include "content/common/content_message_generator.h" | 28 #include "content/common/content_message_generator.h" |
28 } // namespace IPC | 29 } // namespace IPC |
29 | 30 |
30 // Generate param traits log methods. | 31 // Generate param traits log methods. |
31 #include "ipc/param_traits_log_macros.h" | 32 #include "ipc/param_traits_log_macros.h" |
32 namespace IPC { | 33 namespace IPC { |
33 #include "content/common/content_message_generator.h" | 34 #include "content/common/content_message_generator.h" |
34 } // namespace IPC | 35 } // namespace IPC |
35 | 36 |
OLD | NEW |