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

Unified Diff: Source/web/WebSharedWorkerImpl.cpp

Issue 261143003: Change default force composite setting to true (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: With FIXMEs Created 6 years, 7 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 side-by-side diff with in-line comments
Download patch
Index: Source/web/WebSharedWorkerImpl.cpp
diff --git a/Source/web/WebSharedWorkerImpl.cpp b/Source/web/WebSharedWorkerImpl.cpp
index 8abbaa734ef24bd186600875d36d55c5a959b56d..bbd78a1a2ae54a6d24112033c8dc4a285313026c 100644
--- a/Source/web/WebSharedWorkerImpl.cpp
+++ b/Source/web/WebSharedWorkerImpl.cpp
@@ -191,6 +191,9 @@ void WebSharedWorkerImpl::initializeLoader(const WebURL& url)
ASSERT(!m_webView);
m_webView = WebView::create(0);
m_webView->settings()->setOfflineWebApplicationCacheEnabled(RuntimeEnabledFeatures::applicationCacheEnabled());
+ // FIXME: http://crbug.com/363843. This needs to find a better way to
+ // not create graphics layers.
+ m_webView->settings()->setAcceleratedCompositingEnabled(false);
esprehn 2014/05/14 20:32:02 This is so crazy, why does a SharedWorker even hav
enne (OOO) 2014/05/14 20:42:20 I was similarly confused.
// FIXME: Settings information should be passed to the Worker process from Browser process when the worker
// is created (similar to RenderThread::OnCreateNewView).
m_mainFrame = WebLocalFrame::create(this);

Powered by Google App Engine
This is Rietveld 408576698