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

Unified Diff: webkit/compositor_bindings/WebContentLayerImpl.h

Issue 11142031: Remove WTF dependencies from webkit_compositor_bindings (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 2 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: webkit/compositor_bindings/WebContentLayerImpl.h
diff --git a/webkit/compositor_bindings/WebContentLayerImpl.h b/webkit/compositor_bindings/WebContentLayerImpl.h
index 0eb1a8124f85210f758d8b8ae40feff3739cbde0..dc6c29102216425a347ae1ffa7d29bddc47b9cbe 100644
--- a/webkit/compositor_bindings/WebContentLayerImpl.h
+++ b/webkit/compositor_bindings/WebContentLayerImpl.h
@@ -5,10 +5,10 @@
#ifndef WebContentLayerImpl_h
#define WebContentLayerImpl_h
-#include "ContentLayerChromiumClient.h"
#include "WebLayerImpl.h"
-#include <public/WebContentLayer.h>
-#include <wtf/OwnPtr.h>
+#include "base/memory/scoped_ptr.h"
+#include "cc/content_layer_client.h"
+#include "third_party/WebKit/Source/Platform/chromium/public/WebContentLayer.h"
namespace cc {
class IntRect;
@@ -37,7 +37,7 @@ protected:
// ContentLayerChromiumClient implementation.
virtual void paintContents(SkCanvas*, const cc::IntRect& clip, cc::FloatRect& opaque) OVERRIDE;
- OwnPtr<WebLayerImpl> m_layer;
+ scoped_ptr<WebLayerImpl> m_layer;
WebContentLayerClient* m_client;
bool m_drawsContent;
};

Powered by Google App Engine
This is Rietveld 408576698