| 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 #include <map> | 5 #include <map> |
| 6 #include <set> | 6 #include <set> |
| 7 #include <string> | 7 #include <string> |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "build/build_config.h" | 10 #include "build/build_config.h" |
| 11 | 11 |
| 12 #include "base/file_path.h" | 12 #include "base/file_path.h" |
| 13 #include "base/nullable_string16.h" | 13 #include "base/nullable_string16.h" |
| 14 #include "base/platform_file.h" | 14 #include "base/platform_file.h" |
| 15 #include "base/sync_socket.h" | 15 #include "base/sync_socket.h" |
| 16 #include "chrome/common/content_settings.h" | 16 #include "chrome/common/content_settings.h" |
| 17 #include "chrome/common/extensions/extension.h" | 17 #include "chrome/common/extensions/extension.h" |
| 18 #include "chrome/common/geoposition.h" | 18 #include "chrome/common/geoposition.h" |
| 19 #include "chrome/common/nacl_types.h" | 19 #include "chrome/common/nacl_types.h" |
| 20 #include "chrome/common/notification_type.h" | |
| 21 #include "chrome/common/page_zoom.h" | 20 #include "chrome/common/page_zoom.h" |
| 22 #include "chrome/common/translate_errors.h" | 21 #include "chrome/common/translate_errors.h" |
| 23 #include "chrome/common/window_container_type.h" | 22 #include "chrome/common/window_container_type.h" |
| 23 #include "content/common/notification_type.h" |
| 24 #include "ipc/ipc_message_macros.h" | 24 #include "ipc/ipc_message_macros.h" |
| 25 #include "media/audio/audio_buffers_state.h" | 25 #include "media/audio/audio_buffers_state.h" |
| 26 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFindOptions.h" | 26 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFindOptions.h" |
| 27 #include "third_party/WebKit/Source/WebKit/chromium/public/WebMediaPlayerAction.
h" | 27 #include "third_party/WebKit/Source/WebKit/chromium/public/WebMediaPlayerAction.
h" |
| 28 #include "third_party/WebKit/Source/WebKit/chromium/public/WebScreenInfo.h" | 28 #include "third_party/WebKit/Source/WebKit/chromium/public/WebScreenInfo.h" |
| 29 #include "webkit/glue/context_menu.h" | 29 #include "webkit/glue/context_menu.h" |
| 30 #include "webkit/glue/webdropdata.h" | 30 #include "webkit/glue/webdropdata.h" |
| 31 #include "webkit/plugins/npapi/webplugininfo.h" | 31 #include "webkit/plugins/npapi/webplugininfo.h" |
| 32 | 32 |
| 33 #if defined(OS_POSIX) | 33 #if defined(OS_POSIX) |
| (...skipping 2263 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2297 // while performing stress testing. | 2297 // while performing stress testing. |
| 2298 IPC_MESSAGE_ROUTED2(ViewMsg_JavaScriptStressTestControl, | 2298 IPC_MESSAGE_ROUTED2(ViewMsg_JavaScriptStressTestControl, |
| 2299 int /* cmd */, | 2299 int /* cmd */, |
| 2300 int /* param */) | 2300 int /* param */) |
| 2301 | 2301 |
| 2302 // Register a new handler for URL requests with the given scheme. | 2302 // Register a new handler for URL requests with the given scheme. |
| 2303 IPC_MESSAGE_ROUTED3(ViewHostMsg_RegisterProtocolHandler, | 2303 IPC_MESSAGE_ROUTED3(ViewHostMsg_RegisterProtocolHandler, |
| 2304 std::string /* scheme */, | 2304 std::string /* scheme */, |
| 2305 GURL /* url */, | 2305 GURL /* url */, |
| 2306 string16 /* title */) | 2306 string16 /* title */) |
| OLD | NEW |