| 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/dom_storage_common.h" | 18 #include "chrome/common/dom_storage_common.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/indexed_db_key.h" | 21 #include "chrome/common/indexed_db_key.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/window_container_type.h" | 26 #include "chrome/common/window_container_type.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_manager.h" | 29 #include "media/audio/audio_io.h" |
| 30 #include "third_party/WebKit/WebKit/chromium/public/WebFileSystem.h" | 30 #include "third_party/WebKit/WebKit/chromium/public/WebFileSystem.h" |
| 31 #include "third_party/WebKit/WebKit/chromium/public/WebTextDirection.h" | 31 #include "third_party/WebKit/WebKit/chromium/public/WebTextDirection.h" |
| 32 #include "webkit/glue/password_form.h" | 32 #include "webkit/glue/password_form.h" |
| 33 #include "webkit/glue/plugins/webplugin.h" | 33 #include "webkit/glue/plugins/webplugin.h" |
| 34 #include "webkit/glue/resource_type.h" | 34 #include "webkit/glue/resource_type.h" |
| 35 #include "webkit/glue/webmenuitem.h" | 35 #include "webkit/glue/webmenuitem.h" |
| 36 #include "webkit/glue/webpreferences.h" | 36 #include "webkit/glue/webpreferences.h" |
| 37 | 37 |
| 38 // TODO(erg): Split this file into $1_db_params.h, $1_audio_params.h, | 38 // TODO(erg): Split this file into $1_db_params.h, $1_audio_params.h, |
| 39 // $1_print_params.h and $1_render_params.h. | 39 // $1_print_params.h and $1_render_params.h. |
| (...skipping 1048 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1088 struct ParamTraits<ViewHostMsg_OpenFileSystemRequest_Params> { | 1088 struct ParamTraits<ViewHostMsg_OpenFileSystemRequest_Params> { |
| 1089 typedef ViewHostMsg_OpenFileSystemRequest_Params param_type; | 1089 typedef ViewHostMsg_OpenFileSystemRequest_Params param_type; |
| 1090 static void Write(Message* m, const param_type& p); | 1090 static void Write(Message* m, const param_type& p); |
| 1091 static bool Read(const Message* m, void** iter, param_type* p); | 1091 static bool Read(const Message* m, void** iter, param_type* p); |
| 1092 static void Log(const param_type& p, std::string* l); | 1092 static void Log(const param_type& p, std::string* l); |
| 1093 }; | 1093 }; |
| 1094 | 1094 |
| 1095 } // namespace IPC | 1095 } // namespace IPC |
| 1096 | 1096 |
| 1097 #endif // CHROME_COMMON_RENDER_MESSAGES_PARAMS_H_ | 1097 #endif // CHROME_COMMON_RENDER_MESSAGES_PARAMS_H_ |
| OLD | NEW |