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_PARAMS_H_ | 5 #ifndef CHROME_COMMON_RENDER_MESSAGES_PARAMS_H_ |
6 #define CHROME_COMMON_RENDER_MESSAGES_PARAMS_H_ | 6 #define CHROME_COMMON_RENDER_MESSAGES_PARAMS_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <string> | 9 #include <string> |
10 #include <vector> | 10 #include <vector> |
11 | 11 |
12 #include "app/surface/transport_dib.h" | 12 #include "app/surface/transport_dib.h" |
13 #include "base/file_path.h" | 13 #include "base/file_path.h" |
14 #include "base/file_util_proxy.h" | 14 #include "base/file_util_proxy.h" |
15 #include "base/ref_counted.h" | 15 #include "base/ref_counted.h" |
16 #include "base/shared_memory.h" | 16 #include "base/shared_memory.h" |
17 #include "base/time.h" | 17 #include "base/time.h" |
18 #include "base/values.h" | 18 #include "base/values.h" |
19 #include "chrome/common/extensions/extension.h" | 19 #include "chrome/common/extensions/extension.h" |
20 #include "chrome/common/extensions/extension_extent.h" | 20 #include "chrome/common/extensions/extension_extent.h" |
21 #include "chrome/common/extensions/url_pattern.h" | 21 #include "chrome/common/extensions/url_pattern.h" |
22 #include "chrome/common/navigation_gesture.h" | 22 #include "chrome/common/navigation_gesture.h" |
23 #include "chrome/common/navigation_types.h" | 23 #include "chrome/common/navigation_types.h" |
24 #include "chrome/common/page_transition_types.h" | 24 #include "chrome/common/page_transition_types.h" |
25 #include "chrome/common/renderer_preferences.h" | 25 #include "chrome/common/renderer_preferences.h" |
26 #include "chrome/common/serialized_script_value.h" | 26 #include "chrome/common/serialized_script_value.h" |
27 #include "chrome/common/window_container_type.h" | 27 #include "chrome/common/window_container_type.h" |
28 #include "gfx/rect.h" | |
29 #include "gfx/size.h" | |
30 #include "googleurl/src/gurl.h" | 28 #include "googleurl/src/gurl.h" |
31 #include "ipc/ipc_param_traits.h" | 29 #include "ipc/ipc_param_traits.h" |
32 #include "media/audio/audio_parameters.h" | 30 #include "media/audio/audio_parameters.h" |
33 #include "third_party/WebKit/Source/WebKit/chromium/public/WebTextDirection.h" | 31 #include "third_party/WebKit/Source/WebKit/chromium/public/WebTextDirection.h" |
| 32 #include "ui/gfx/rect.h" |
| 33 #include "ui/gfx/size.h" |
34 #include "webkit/glue/password_form.h" | 34 #include "webkit/glue/password_form.h" |
35 #include "webkit/glue/resource_type.h" | 35 #include "webkit/glue/resource_type.h" |
36 #include "webkit/glue/webaccessibility.h" | 36 #include "webkit/glue/webaccessibility.h" |
37 #include "webkit/glue/webmenuitem.h" | 37 #include "webkit/glue/webmenuitem.h" |
38 #include "webkit/glue/webpreferences.h" | 38 #include "webkit/glue/webpreferences.h" |
39 #include "webkit/plugins/npapi/webplugin.h" | 39 #include "webkit/plugins/npapi/webplugin.h" |
40 | 40 |
41 // TODO(erg): Split this file into $1_db_params.h, $1_audio_params.h, | 41 // TODO(erg): Split this file into $1_db_params.h, $1_audio_params.h, |
42 // $1_print_params.h and $1_render_params.h. | 42 // $1_print_params.h and $1_render_params.h. |
43 | 43 |
(...skipping 1108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1152 struct ParamTraits<ViewHostMsg_AccessibilityNotification_Params> { | 1152 struct ParamTraits<ViewHostMsg_AccessibilityNotification_Params> { |
1153 typedef ViewHostMsg_AccessibilityNotification_Params param_type; | 1153 typedef ViewHostMsg_AccessibilityNotification_Params param_type; |
1154 static void Write(Message* m, const param_type& p); | 1154 static void Write(Message* m, const param_type& p); |
1155 static bool Read(const Message* m, void** iter, param_type* p); | 1155 static bool Read(const Message* m, void** iter, param_type* p); |
1156 static void Log(const param_type& p, std::string* l); | 1156 static void Log(const param_type& p, std::string* l); |
1157 }; | 1157 }; |
1158 | 1158 |
1159 } // namespace IPC | 1159 } // namespace IPC |
1160 | 1160 |
1161 #endif // CHROME_COMMON_RENDER_MESSAGES_PARAMS_H_ | 1161 #endif // CHROME_COMMON_RENDER_MESSAGES_PARAMS_H_ |
OLD | NEW |