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

Unified Diff: cc/scrollbar_geometry_stub.h

Issue 11144034: cc: Remove wtf includes for scrollbar layer classes (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebased 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
« no previous file with comments | « cc/scrollbar_geometry_fixed_thumb.cc ('k') | cc/scrollbar_geometry_stub.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/scrollbar_geometry_stub.h
diff --git a/cc/scrollbar_geometry_stub.h b/cc/scrollbar_geometry_stub.h
index 0d23a4e78bd8d5becdaaea0530afd93ce2e82d28..0ed0d65618c821a5f6ff6ed739b95a38b5888ef8 100644
--- a/cc/scrollbar_geometry_stub.h
+++ b/cc/scrollbar_geometry_stub.h
@@ -5,9 +5,8 @@
#ifndef CCScrollbarGeometryStub_h
#define CCScrollbarGeometryStub_h
+#include "base/memory/scoped_ptr.h"
#include <public/WebScrollbarThemeGeometry.h>
-#include <wtf/OwnPtr.h>
-#include <wtf/PassOwnPtr.h>
namespace cc {
@@ -41,10 +40,10 @@ public:
virtual void splitTrack(WebKit::WebScrollbar*, const WebKit::WebRect& track, WebKit::WebRect& startTrack, WebKit::WebRect& thumb, WebKit::WebRect& endTrack) OVERRIDE;
protected:
- explicit CCScrollbarGeometryStub(PassOwnPtr<WebKit::WebScrollbarThemeGeometry>);
+ explicit CCScrollbarGeometryStub(scoped_ptr<WebKit::WebScrollbarThemeGeometry>);
private:
- OwnPtr<WebKit::WebScrollbarThemeGeometry> m_geometry;
+ scoped_ptr<WebKit::WebScrollbarThemeGeometry> m_geometry;
};
}
« no previous file with comments | « cc/scrollbar_geometry_fixed_thumb.cc ('k') | cc/scrollbar_geometry_stub.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698