OLD | NEW |
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 #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 "app/clipboard/clipboard.h" // enum | 14 #include "app/clipboard/clipboard.h" // enum |
15 #include "base/basictypes.h" | 15 #include "base/basictypes.h" |
16 #include "base/ref_counted.h" | 16 #include "base/ref_counted.h" |
17 #include "base/string16.h" | 17 #include "base/string16.h" |
18 #include "chrome/common/common_param_traits.h" | 18 #include "chrome/common/common_param_traits.h" |
19 #include "chrome/common/css_colors.h" | 19 #include "chrome/common/css_colors.h" |
20 #include "chrome/common/dom_storage_common.h" | 20 #include "chrome/common/dom_storage_common.h" |
21 #include "chrome/common/indexed_db_param_traits.h" | 21 #include "chrome/common/indexed_db_param_traits.h" |
22 #include "chrome/common/page_transition_types.h" | 22 #include "chrome/common/page_transition_types.h" |
23 #include "chrome/common/translate_errors.h" | 23 #include "chrome/common/translate_errors.h" |
24 #include "chrome/common/view_types.h" | 24 #include "chrome/common/view_types.h" |
25 #include "chrome/common/webkit_param_traits.h" | 25 #include "chrome/common/webkit_param_traits.h" |
26 #include "gfx/native_widget_types.h" | |
27 #include "ipc/ipc_message_utils.h" | 26 #include "ipc/ipc_message_utils.h" |
28 #include "ipc/ipc_platform_file.h" // ifdefed typedef. | 27 #include "ipc/ipc_platform_file.h" // ifdefed typedef. |
29 #include "third_party/WebKit/WebKit/chromium/public/WebStorageArea.h" | 28 #include "third_party/WebKit/WebKit/chromium/public/WebStorageArea.h" |
30 #include "webkit/appcache/appcache_interfaces.h" // enum appcache::Status | 29 #include "webkit/appcache/appcache_interfaces.h" // enum appcache::Status |
31 #include "webkit/fileapi/file_system_types.h" // enum fileapi::FileSystemType | 30 #include "webkit/fileapi/file_system_types.h" // enum fileapi::FileSystemType |
32 #include "webkit/glue/plugins/pepper_dir_contents.h" | 31 #include "webkit/glue/plugins/pepper_dir_contents.h" |
33 | 32 |
34 #if defined(OS_MACOSX) | 33 #if defined(OS_MACOSX) |
35 struct FontDescriptor; | 34 struct FontDescriptor; |
36 #endif | 35 #endif |
(...skipping 601 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
638 static bool Read(const Message* m, void** iter, param_type* p); | 637 static bool Read(const Message* m, void** iter, param_type* p); |
639 static void Log(const param_type& p, std::string* l); | 638 static void Log(const param_type& p, std::string* l); |
640 }; | 639 }; |
641 | 640 |
642 } // namespace IPC | 641 } // namespace IPC |
643 | 642 |
644 #define MESSAGES_INTERNAL_FILE "chrome/common/render_messages_internal.h" | 643 #define MESSAGES_INTERNAL_FILE "chrome/common/render_messages_internal.h" |
645 #include "ipc/ipc_message_macros.h" | 644 #include "ipc/ipc_message_macros.h" |
646 | 645 |
647 #endif // CHROME_COMMON_RENDER_MESSAGES_H_ | 646 #endif // CHROME_COMMON_RENDER_MESSAGES_H_ |
OLD | NEW |