| 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/ref_counted.h" | 14 #include "base/ref_counted.h" |
| 15 #include "base/shared_memory.h" | 15 #include "base/shared_memory.h" |
| 16 #include "base/time.h" | 16 #include "base/time.h" |
| 17 #include "base/values.h" | 17 #include "base/values.h" |
| 18 #include "chrome/common/extensions/extension.h" | 18 #include "chrome/common/extensions/extension.h" |
| 19 #include "chrome/common/extensions/extension_extent.h" | 19 #include "chrome/common/extensions/extension_extent.h" |
| 20 #include "chrome/common/extensions/url_pattern.h" | 20 #include "chrome/common/extensions/url_pattern.h" |
| 21 #include "chrome/common/navigation_gesture.h" | 21 #include "chrome/common/navigation_gesture.h" |
| 22 #include "chrome/common/navigation_types.h" | 22 #include "chrome/common/navigation_types.h" |
| 23 #include "chrome/common/page_transition_types.h" | 23 #include "chrome/common/page_transition_types.h" |
| 24 #include "chrome/common/renderer_preferences.h" | 24 #include "chrome/common/renderer_preferences.h" |
| 25 #include "chrome/common/serialized_script_value.h" | |
| 26 #include "chrome/common/window_container_type.h" | 25 #include "chrome/common/window_container_type.h" |
| 26 #include "content/common/serialized_script_value.h" |
| 27 #include "googleurl/src/gurl.h" | 27 #include "googleurl/src/gurl.h" |
| 28 #include "ipc/ipc_param_traits.h" | 28 #include "ipc/ipc_param_traits.h" |
| 29 #include "media/audio/audio_parameters.h" | 29 #include "media/audio/audio_parameters.h" |
| 30 #include "net/base/host_port_pair.h" | 30 #include "net/base/host_port_pair.h" |
| 31 #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" | 32 #include "ui/gfx/rect.h" |
| 33 #include "ui/gfx/size.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/webaccessibility.h" | 35 #include "webkit/glue/webaccessibility.h" |
| 36 #include "webkit/glue/webmenuitem.h" | 36 #include "webkit/glue/webmenuitem.h" |
| (...skipping 1084 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1121 struct ParamTraits<ViewHostMsg_MalwareDOMDetails_Node> { | 1121 struct ParamTraits<ViewHostMsg_MalwareDOMDetails_Node> { |
| 1122 typedef ViewHostMsg_MalwareDOMDetails_Node param_type; | 1122 typedef ViewHostMsg_MalwareDOMDetails_Node param_type; |
| 1123 static void Write(Message* m, const param_type& p); | 1123 static void Write(Message* m, const param_type& p); |
| 1124 static bool Read(const Message* m, void** iter, param_type* p); | 1124 static bool Read(const Message* m, void** iter, param_type* p); |
| 1125 static void Log(const param_type& p, std::string* l); | 1125 static void Log(const param_type& p, std::string* l); |
| 1126 }; | 1126 }; |
| 1127 | 1127 |
| 1128 } // namespace IPC | 1128 } // namespace IPC |
| 1129 | 1129 |
| 1130 #endif // CHROME_COMMON_RENDER_MESSAGES_PARAMS_H_ | 1130 #endif // CHROME_COMMON_RENDER_MESSAGES_PARAMS_H_ |
| OLD | NEW |