Index: chrome/browser/chrome_content_browser_client.cc |
diff --git a/chrome/browser/chrome_content_browser_client.cc b/chrome/browser/chrome_content_browser_client.cc |
index 97d276191cd605d375c7edfd10c1c217e583f084..e944f125d7aa3b5a3fe94697c940d645e7dd1d10 100644 |
--- a/chrome/browser/chrome_content_browser_client.cc |
+++ b/chrome/browser/chrome_content_browser_client.cc |
@@ -115,7 +115,6 @@ |
#include "content/public/browser/browser_url_handler.h" |
#include "content/public/browser/child_process_data.h" |
#include "content/public/browser/child_process_security_policy.h" |
-#include "content/public/browser/compositor_util.h" |
#include "content/public/browser/render_process_host.h" |
#include "content/public/browser/render_view_host.h" |
#include "content/public/browser/resource_context.h" |
@@ -1406,9 +1405,6 @@ void ChromeContentBrowserClient::AppendExtraCommandLineSwitches( |
#endif |
} |
- if (content::IsThreadedCompositingEnabled()) |
- command_line->AppendSwitch(switches::kEnableThreadedCompositing); |
- |
if (message_center::IsRichNotificationEnabled()) |
command_line->AppendSwitch(switches::kDisableHTMLNotifications); |
@@ -2207,9 +2203,6 @@ void ChromeContentBrowserClient::OverrideWebkitPrefs( |
} |
DCHECK(!web_prefs->default_encoding.empty()); |
- if (content::IsForceCompositingModeEnabled()) |
- web_prefs->force_compositing_mode = true; |
- |
WebContents* web_contents = WebContents::FromRenderViewHost(rvh); |
extensions::ViewType view_type = extensions::GetViewType(web_contents); |
ExtensionService* service = |