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

Unified Diff: sky/engine/web/GraphicsLayerFactoryChromium.cpp

Issue 757143004: Remove m_layerTreeView from WebViewImpl. (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 6 years, 1 month 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
« no previous file with comments | « sky/engine/web/GraphicsLayerFactoryChromium.h ('k') | sky/engine/web/WebSettingsImpl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sky/engine/web/GraphicsLayerFactoryChromium.cpp
diff --git a/sky/engine/web/GraphicsLayerFactoryChromium.cpp b/sky/engine/web/GraphicsLayerFactoryChromium.cpp
index 2cc02bc4216cf0967e9d78ebe533e9e71bc65f29..fd9de6ec894b94d226fc803c9a93e5b1d3755842 100644
--- a/sky/engine/web/GraphicsLayerFactoryChromium.cpp
+++ b/sky/engine/web/GraphicsLayerFactoryChromium.cpp
@@ -27,12 +27,10 @@
#include "sky/engine/web/GraphicsLayerFactoryChromium.h"
#include "sky/engine/platform/graphics/GraphicsLayer.h"
-#include "sky/engine/web/WebViewImpl.h"
namespace blink {
-GraphicsLayerFactoryChromium::GraphicsLayerFactoryChromium(WebViewImpl* webView)
- : m_webView(webView)
+GraphicsLayerFactoryChromium::GraphicsLayerFactoryChromium()
{
}
@@ -43,7 +41,6 @@ GraphicsLayerFactoryChromium::~GraphicsLayerFactoryChromium()
PassOwnPtr<GraphicsLayer> GraphicsLayerFactoryChromium::createGraphicsLayer(GraphicsLayerClient* client)
{
OwnPtr<GraphicsLayer> layer = adoptPtr(new GraphicsLayer(client));
- m_webView->registerForAnimations(layer->platformLayer());
return layer.release();
}
« no previous file with comments | « sky/engine/web/GraphicsLayerFactoryChromium.h ('k') | sky/engine/web/WebSettingsImpl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698