OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 "content/browser/web_contents/web_contents_impl.h" | 5 #include "content/browser/web_contents/web_contents_impl.h" |
6 | 6 |
7 #include <utility> | 7 #include <utility> |
8 | 8 |
9 #include "base/command_line.h" | 9 #include "base/command_line.h" |
10 #include "base/metrics/histogram.h" | 10 #include "base/metrics/histogram.h" |
(...skipping 11 matching lines...) Expand all Loading... |
22 #include "content/browser/debugger/devtools_manager_impl.h" | 22 #include "content/browser/debugger/devtools_manager_impl.h" |
23 #include "content/browser/dom_storage/dom_storage_context_impl.h" | 23 #include "content/browser/dom_storage/dom_storage_context_impl.h" |
24 #include "content/browser/dom_storage/session_storage_namespace_impl.h" | 24 #include "content/browser/dom_storage/session_storage_namespace_impl.h" |
25 #include "content/browser/download/download_stats.h" | 25 #include "content/browser/download/download_stats.h" |
26 #include "content/browser/download/mhtml_generation_manager.h" | 26 #include "content/browser/download/mhtml_generation_manager.h" |
27 #include "content/browser/download/save_package.h" | 27 #include "content/browser/download/save_package.h" |
28 #include "content/browser/gpu/gpu_data_manager_impl.h" | 28 #include "content/browser/gpu/gpu_data_manager_impl.h" |
29 #include "content/browser/gpu/gpu_process_host.h" | 29 #include "content/browser/gpu/gpu_process_host.h" |
30 #include "content/browser/host_zoom_map_impl.h" | 30 #include "content/browser/host_zoom_map_impl.h" |
31 #include "content/browser/intents/web_intents_dispatcher_impl.h" | 31 #include "content/browser/intents/web_intents_dispatcher_impl.h" |
| 32 #include "content/browser/loader/resource_dispatcher_host_impl.h" |
32 #include "content/browser/renderer_host/render_process_host_impl.h" | 33 #include "content/browser/renderer_host/render_process_host_impl.h" |
33 #include "content/browser/renderer_host/render_view_host_impl.h" | 34 #include "content/browser/renderer_host/render_view_host_impl.h" |
34 #include "content/browser/renderer_host/render_widget_host_impl.h" | 35 #include "content/browser/renderer_host/render_widget_host_impl.h" |
35 #include "content/browser/renderer_host/resource_dispatcher_host_impl.h" | |
36 #include "content/browser/site_instance_impl.h" | 36 #include "content/browser/site_instance_impl.h" |
37 #include "content/browser/web_contents/interstitial_page_impl.h" | 37 #include "content/browser/web_contents/interstitial_page_impl.h" |
38 #include "content/browser/web_contents/navigation_entry_impl.h" | 38 #include "content/browser/web_contents/navigation_entry_impl.h" |
39 #include "content/browser/web_contents/web_contents_view_guest.h" | 39 #include "content/browser/web_contents/web_contents_view_guest.h" |
40 #include "content/browser/webui/web_ui_impl.h" | 40 #include "content/browser/webui/web_ui_impl.h" |
41 #include "content/common/browser_plugin_messages.h" | 41 #include "content/common/browser_plugin_messages.h" |
42 #include "content/common/intents_messages.h" | 42 #include "content/common/intents_messages.h" |
43 #include "content/common/ssl_status_serialization.h" | 43 #include "content/common/ssl_status_serialization.h" |
44 #include "content/common/view_messages.h" | 44 #include "content/common/view_messages.h" |
45 #include "content/port/browser/render_view_host_delegate_view.h" | 45 #include "content/port/browser/render_view_host_delegate_view.h" |
(...skipping 3313 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3359 | 3359 |
3360 BrowserPluginGuest* WebContentsImpl::GetBrowserPluginGuest() { | 3360 BrowserPluginGuest* WebContentsImpl::GetBrowserPluginGuest() { |
3361 return browser_plugin_guest_.get(); | 3361 return browser_plugin_guest_.get(); |
3362 } | 3362 } |
3363 | 3363 |
3364 BrowserPluginEmbedder* WebContentsImpl::GetBrowserPluginEmbedder() { | 3364 BrowserPluginEmbedder* WebContentsImpl::GetBrowserPluginEmbedder() { |
3365 return browser_plugin_embedder_.get(); | 3365 return browser_plugin_embedder_.get(); |
3366 } | 3366 } |
3367 | 3367 |
3368 } // namespace content | 3368 } // namespace content |
OLD | NEW |