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 #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" | |
13 #include "base/file_path.h" | 12 #include "base/file_path.h" |
14 #include "base/ref_counted.h" | 13 #include "base/ref_counted.h" |
15 #include "base/shared_memory.h" | 14 #include "base/shared_memory.h" |
16 #include "base/time.h" | 15 #include "base/time.h" |
17 #include "base/values.h" | 16 #include "base/values.h" |
18 #include "chrome/common/extensions/extension.h" | 17 #include "chrome/common/extensions/extension.h" |
19 #include "chrome/common/extensions/extension_extent.h" | 18 #include "chrome/common/extensions/extension_extent.h" |
20 #include "chrome/common/extensions/url_pattern.h" | 19 #include "chrome/common/extensions/url_pattern.h" |
21 #include "chrome/common/window_container_type.h" | 20 #include "chrome/common/window_container_type.h" |
22 #include "content/common/navigation_gesture.h" | 21 #include "content/common/navigation_gesture.h" |
23 #include "content/common/navigation_types.h" | 22 #include "content/common/navigation_types.h" |
24 #include "content/common/page_transition_types.h" | 23 #include "content/common/page_transition_types.h" |
25 #include "content/common/serialized_script_value.h" | 24 #include "content/common/serialized_script_value.h" |
26 #include "googleurl/src/gurl.h" | 25 #include "googleurl/src/gurl.h" |
27 #include "ipc/ipc_param_traits.h" | 26 #include "ipc/ipc_param_traits.h" |
28 #include "net/base/host_port_pair.h" | 27 #include "net/base/host_port_pair.h" |
29 #include "ui/gfx/rect.h" | 28 #include "ui/gfx/rect.h" |
30 #include "ui/gfx/size.h" | 29 #include "ui/gfx/size.h" |
| 30 #include "ui/gfx/surface/transport_dib.h" |
31 #include "webkit/glue/password_form.h" | 31 #include "webkit/glue/password_form.h" |
32 #include "webkit/glue/webaccessibility.h" | 32 #include "webkit/glue/webaccessibility.h" |
33 #include "webkit/plugins/npapi/webplugin.h" | 33 #include "webkit/plugins/npapi/webplugin.h" |
34 | 34 |
35 // TODO(erg): Split this file into $1_db_params.h, $1_audio_params.h, | 35 // TODO(erg): Split this file into $1_db_params.h, $1_audio_params.h, |
36 // $1_print_params.h and $1_render_params.h. | 36 // $1_print_params.h and $1_render_params.h. |
37 | 37 |
38 namespace net { | 38 namespace net { |
39 class UploadData; | 39 class UploadData; |
40 } | 40 } |
(...skipping 901 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
942 struct ParamTraits<ViewHostMsg_MalwareDOMDetails_Node> { | 942 struct ParamTraits<ViewHostMsg_MalwareDOMDetails_Node> { |
943 typedef ViewHostMsg_MalwareDOMDetails_Node param_type; | 943 typedef ViewHostMsg_MalwareDOMDetails_Node param_type; |
944 static void Write(Message* m, const param_type& p); | 944 static void Write(Message* m, const param_type& p); |
945 static bool Read(const Message* m, void** iter, param_type* p); | 945 static bool Read(const Message* m, void** iter, param_type* p); |
946 static void Log(const param_type& p, std::string* l); | 946 static void Log(const param_type& p, std::string* l); |
947 }; | 947 }; |
948 | 948 |
949 } // namespace IPC | 949 } // namespace IPC |
950 | 950 |
951 #endif // CHROME_COMMON_RENDER_MESSAGES_PARAMS_H_ | 951 #endif // CHROME_COMMON_RENDER_MESSAGES_PARAMS_H_ |
OLD | NEW |