OLD | NEW |
1 // Copyright (c) 2011 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 // Multiply-included file, no traditional include guard. | 5 // Multiply-included file, no traditional include guard. |
6 #include <map> | 6 #include <map> |
7 #include <set> | 7 #include <set> |
8 #include <string> | 8 #include <string> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
(...skipping 10 matching lines...) Expand all Loading... |
21 #include "base/sync_socket.h" | 21 #include "base/sync_socket.h" |
22 #include "base/values.h" | 22 #include "base/values.h" |
23 #include "build/build_config.h" | 23 #include "build/build_config.h" |
24 #include "chrome/common/common_param_traits.h" | 24 #include "chrome/common/common_param_traits.h" |
25 #include "chrome/common/content_settings.h" | 25 #include "chrome/common/content_settings.h" |
26 #include "chrome/common/css_colors.h" | 26 #include "chrome/common/css_colors.h" |
27 #include "chrome/common/edit_command.h" | 27 #include "chrome/common/edit_command.h" |
28 #include "chrome/common/extensions/extension.h" | 28 #include "chrome/common/extensions/extension.h" |
29 #include "chrome/common/extensions/extension_extent.h" | 29 #include "chrome/common/extensions/extension_extent.h" |
30 #include "chrome/common/extensions/url_pattern.h" | 30 #include "chrome/common/extensions/url_pattern.h" |
31 #include "chrome/common/geoposition.h" | |
32 #include "chrome/common/instant_types.h" | 31 #include "chrome/common/instant_types.h" |
33 #include "chrome/common/nacl_types.h" | 32 #include "chrome/common/nacl_types.h" |
34 #include "chrome/common/page_transition_types.h" | 33 #include "chrome/common/page_transition_types.h" |
35 #include "chrome/common/page_zoom.h" | 34 #include "chrome/common/page_zoom.h" |
36 #include "chrome/common/render_messages_params.h" | 35 #include "chrome/common/render_messages_params.h" |
37 #include "chrome/common/thumbnail_score.h" | 36 #include "chrome/common/thumbnail_score.h" |
38 #include "chrome/common/translate_errors.h" | 37 #include "chrome/common/translate_errors.h" |
39 #include "chrome/common/view_types.h" | 38 #include "chrome/common/view_types.h" |
40 #include "chrome/common/web_apps.h" | 39 #include "chrome/common/web_apps.h" |
41 #include "chrome/common/webkit_param_traits.h" | 40 #include "chrome/common/webkit_param_traits.h" |
42 #include "chrome/common/window_container_type.h" | 41 #include "chrome/common/window_container_type.h" |
43 #include "content/common/common_param_traits.h" | 42 #include "content/common/common_param_traits.h" |
| 43 #include "content/common/geoposition.h" |
44 #include "content/common/notification_type.h" | 44 #include "content/common/notification_type.h" |
45 #include "content/common/resource_response.h" | 45 #include "content/common/resource_response.h" |
46 #include "ipc/ipc_channel_handle.h" | 46 #include "ipc/ipc_channel_handle.h" |
47 #include "ipc/ipc_message_macros.h" | 47 #include "ipc/ipc_message_macros.h" |
48 #include "ipc/ipc_message_utils.h" | 48 #include "ipc/ipc_message_utils.h" |
49 #include "ipc/ipc_platform_file.h" // ifdefed typedef. | 49 #include "ipc/ipc_platform_file.h" // ifdefed typedef. |
50 #include "media/audio/audio_buffers_state.h" | 50 #include "media/audio/audio_buffers_state.h" |
51 #include "third_party/WebKit/Source/WebKit/chromium/public/WebCompositionUnderli
ne.h" | 51 #include "third_party/WebKit/Source/WebKit/chromium/public/WebCompositionUnderli
ne.h" |
52 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFindOptions.h" | 52 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFindOptions.h" |
53 #include "third_party/WebKit/Source/WebKit/chromium/public/WebMediaPlayerAction.
h" | 53 #include "third_party/WebKit/Source/WebKit/chromium/public/WebMediaPlayerAction.
h" |
(...skipping 2298 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2352 IPC_MESSAGE_ROUTED2(ViewMsg_JavaScriptStressTestControl, | 2352 IPC_MESSAGE_ROUTED2(ViewMsg_JavaScriptStressTestControl, |
2353 int /* cmd */, | 2353 int /* cmd */, |
2354 int /* param */) | 2354 int /* param */) |
2355 | 2355 |
2356 // Register a new handler for URL requests with the given scheme. | 2356 // Register a new handler for URL requests with the given scheme. |
2357 IPC_MESSAGE_ROUTED3(ViewHostMsg_RegisterProtocolHandler, | 2357 IPC_MESSAGE_ROUTED3(ViewHostMsg_RegisterProtocolHandler, |
2358 std::string /* scheme */, | 2358 std::string /* scheme */, |
2359 GURL /* url */, | 2359 GURL /* url */, |
2360 string16 /* title */) | 2360 string16 /* title */) |
2361 | 2361 |
OLD | NEW |