OLD | NEW |
1 // Copyright (c) 2011 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 #ifndef CHROME_COMMON_RENDER_MESSAGES_H_ | 5 #ifndef CHROME_COMMON_RENDER_MESSAGES_H_ |
6 #define CHROME_COMMON_RENDER_MESSAGES_H_ | 6 #define CHROME_COMMON_RENDER_MESSAGES_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <string> | 9 #include <string> |
10 #include <vector> | 10 #include <vector> |
11 | 11 |
12 // TODO(erg): This list has been temporarily annotated by erg while doing work | 12 // TODO(erg): This list has been temporarily annotated by erg while doing work |
13 // on which headers to pull out. | 13 // on which headers to pull out. |
14 #include "base/basictypes.h" | 14 #include "base/basictypes.h" |
15 #include "base/ref_counted.h" | 15 #include "base/ref_counted.h" |
16 #include "base/string16.h" | 16 #include "base/string16.h" |
17 #include "chrome/common/common_param_traits.h" | 17 #include "chrome/common/common_param_traits.h" |
18 #include "chrome/common/css_colors.h" | 18 #include "chrome/common/css_colors.h" |
19 #include "chrome/common/page_transition_types.h" | 19 #include "chrome/common/page_transition_types.h" |
20 #include "chrome/common/translate_errors.h" | 20 #include "chrome/common/translate_errors.h" |
21 #include "chrome/common/view_types.h" | 21 #include "chrome/common/view_types.h" |
22 #include "chrome/common/webkit_param_traits.h" | 22 #include "chrome/common/webkit_param_traits.h" |
| 23 #include "content/common/common_param_traits.h" |
23 #include "ipc/ipc_message_utils.h" | 24 #include "ipc/ipc_message_utils.h" |
24 #include "ipc/ipc_platform_file.h" // ifdefed typedef. | 25 #include "ipc/ipc_platform_file.h" // ifdefed typedef. |
25 #include "ui/base/clipboard/clipboard.h" // enum | 26 #include "ui/base/clipboard/clipboard.h" // enum |
26 #include "webkit/appcache/appcache_interfaces.h" // enum appcache::Status | 27 #include "webkit/appcache/appcache_interfaces.h" // enum appcache::Status |
27 #include "webkit/fileapi/file_system_types.h" // enum fileapi::FileSystemType | 28 #include "webkit/fileapi/file_system_types.h" // enum fileapi::FileSystemType |
28 | 29 |
29 #if defined(OS_MACOSX) | 30 #if defined(OS_MACOSX) |
30 struct FontDescriptor; | 31 struct FontDescriptor; |
31 #endif | 32 #endif |
32 | 33 |
(...skipping 495 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
528 static void Write(Message* m, const param_type& p); | 529 static void Write(Message* m, const param_type& p); |
529 static bool Read(const Message* m, void** iter, param_type* p); | 530 static bool Read(const Message* m, void** iter, param_type* p); |
530 static void Log(const param_type& p, std::string* l); | 531 static void Log(const param_type& p, std::string* l); |
531 }; | 532 }; |
532 | 533 |
533 } // namespace IPC | 534 } // namespace IPC |
534 | 535 |
535 #include "chrome/common/render_messages_internal.h" | 536 #include "chrome/common/render_messages_internal.h" |
536 | 537 |
537 #endif // CHROME_COMMON_RENDER_MESSAGES_H_ | 538 #endif // CHROME_COMMON_RENDER_MESSAGES_H_ |
OLD | NEW |