Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(788)

Side by Side Diff: content/browser/web_contents/web_contents_impl.cc

Issue 22912014: Correctly use IsThreadedCompositingEnabled in content_browsertests (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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/debug/trace_event.h" 10 #include "base/debug/trace_event.h"
(...skipping 11 matching lines...) Expand all
22 #include "content/browser/browser_plugin/browser_plugin_embedder.h" 22 #include "content/browser/browser_plugin/browser_plugin_embedder.h"
23 #include "content/browser/browser_plugin/browser_plugin_guest.h" 23 #include "content/browser/browser_plugin/browser_plugin_guest.h"
24 #include "content/browser/browser_plugin/browser_plugin_guest_manager.h" 24 #include "content/browser/browser_plugin/browser_plugin_guest_manager.h"
25 #include "content/browser/child_process_security_policy_impl.h" 25 #include "content/browser/child_process_security_policy_impl.h"
26 #include "content/browser/devtools/devtools_manager_impl.h" 26 #include "content/browser/devtools/devtools_manager_impl.h"
27 #include "content/browser/dom_storage/dom_storage_context_wrapper.h" 27 #include "content/browser/dom_storage/dom_storage_context_wrapper.h"
28 #include "content/browser/dom_storage/session_storage_namespace_impl.h" 28 #include "content/browser/dom_storage/session_storage_namespace_impl.h"
29 #include "content/browser/download/download_stats.h" 29 #include "content/browser/download/download_stats.h"
30 #include "content/browser/download/mhtml_generation_manager.h" 30 #include "content/browser/download/mhtml_generation_manager.h"
31 #include "content/browser/download/save_package.h" 31 #include "content/browser/download/save_package.h"
32 #include "content/browser/gpu/compositor_util.h"
32 #include "content/browser/gpu/gpu_data_manager_impl.h" 33 #include "content/browser/gpu/gpu_data_manager_impl.h"
33 #include "content/browser/gpu/gpu_process_host.h" 34 #include "content/browser/gpu/gpu_process_host.h"
34 #include "content/browser/host_zoom_map_impl.h" 35 #include "content/browser/host_zoom_map_impl.h"
35 #include "content/browser/loader/resource_dispatcher_host_impl.h" 36 #include "content/browser/loader/resource_dispatcher_host_impl.h"
36 #include "content/browser/power_save_blocker_impl.h" 37 #include "content/browser/power_save_blocker_impl.h"
37 #include "content/browser/renderer_host/render_process_host_impl.h" 38 #include "content/browser/renderer_host/render_process_host_impl.h"
38 #include "content/browser/renderer_host/render_view_host_impl.h" 39 #include "content/browser/renderer_host/render_view_host_impl.h"
39 #include "content/browser/renderer_host/render_widget_host_impl.h" 40 #include "content/browser/renderer_host/render_widget_host_impl.h"
40 #include "content/browser/site_instance_impl.h" 41 #include "content/browser/site_instance_impl.h"
41 #include "content/browser/web_contents/interstitial_page_impl.h" 42 #include "content/browser/web_contents/interstitial_page_impl.h"
42 #include "content/browser/web_contents/navigation_entry_impl.h" 43 #include "content/browser/web_contents/navigation_entry_impl.h"
43 #include "content/browser/web_contents/web_contents_view_guest.h" 44 #include "content/browser/web_contents/web_contents_view_guest.h"
44 #include "content/browser/webui/generic_handler.h" 45 #include "content/browser/webui/generic_handler.h"
45 #include "content/browser/webui/web_ui_controller_factory_registry.h" 46 #include "content/browser/webui/web_ui_controller_factory_registry.h"
46 #include "content/browser/webui/web_ui_impl.h" 47 #include "content/browser/webui/web_ui_impl.h"
47 #include "content/common/browser_plugin/browser_plugin_constants.h" 48 #include "content/common/browser_plugin/browser_plugin_constants.h"
48 #include "content/common/browser_plugin/browser_plugin_messages.h" 49 #include "content/common/browser_plugin/browser_plugin_messages.h"
49 #include "content/common/image_messages.h" 50 #include "content/common/image_messages.h"
50 #include "content/common/ssl_status_serialization.h" 51 #include "content/common/ssl_status_serialization.h"
51 #include "content/common/view_messages.h" 52 #include "content/common/view_messages.h"
52 #include "content/port/browser/render_view_host_delegate_view.h" 53 #include "content/port/browser/render_view_host_delegate_view.h"
53 #include "content/port/browser/render_widget_host_view_port.h" 54 #include "content/port/browser/render_widget_host_view_port.h"
54 #include "content/public/browser/browser_context.h" 55 #include "content/public/browser/browser_context.h"
55 #include "content/public/browser/color_chooser.h" 56 #include "content/public/browser/color_chooser.h"
56 #include "content/public/browser/compositor_util.h"
57 #include "content/public/browser/content_browser_client.h" 57 #include "content/public/browser/content_browser_client.h"
58 #include "content/public/browser/devtools_agent_host.h" 58 #include "content/public/browser/devtools_agent_host.h"
59 #include "content/public/browser/download_manager.h" 59 #include "content/public/browser/download_manager.h"
60 #include "content/public/browser/download_url_parameters.h" 60 #include "content/public/browser/download_url_parameters.h"
61 #include "content/public/browser/invalidate_type.h" 61 #include "content/public/browser/invalidate_type.h"
62 #include "content/public/browser/javascript_dialog_manager.h" 62 #include "content/public/browser/javascript_dialog_manager.h"
63 #include "content/public/browser/load_from_memory_cache_details.h" 63 #include "content/public/browser/load_from_memory_cache_details.h"
64 #include "content/public/browser/load_notification_details.h" 64 #include "content/public/browser/load_notification_details.h"
65 #include "content/public/browser/navigation_details.h" 65 #include "content/public/browser/navigation_details.h"
66 #include "content/public/browser/notification_details.h" 66 #include "content/public/browser/notification_details.h"
(...skipping 3664 matching lines...) Expand 10 before | Expand all | Expand 10 after
3731 } 3731 }
3732 3732
3733 void WebContentsImpl::ClearAllPowerSaveBlockers() { 3733 void WebContentsImpl::ClearAllPowerSaveBlockers() {
3734 for (PowerSaveBlockerMap::iterator i(power_save_blockers_.begin()); 3734 for (PowerSaveBlockerMap::iterator i(power_save_blockers_.begin());
3735 i != power_save_blockers_.end(); ++i) 3735 i != power_save_blockers_.end(); ++i)
3736 STLDeleteValues(&power_save_blockers_[i->first]); 3736 STLDeleteValues(&power_save_blockers_[i->first]);
3737 power_save_blockers_.clear(); 3737 power_save_blockers_.clear();
3738 } 3738 }
3739 3739
3740 } // namespace content 3740 } // namespace content
OLDNEW
« no previous file with comments | « content/browser/renderer_host/render_widget_host_view_browsertest.cc ('k') | content/content_browser.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698