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

Unified Diff: cc/scrollbar_layer_impl.h

Issue 11472021: cc: Pass LayerTreeHostImpl to LayerImpl constructor (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 8 years 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_layer.cc ('k') | cc/scrollbar_layer_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/scrollbar_layer_impl.h
diff --git a/cc/scrollbar_layer_impl.h b/cc/scrollbar_layer_impl.h
index 6b55aa8b641f3b7801ab617a7493fd207ab78435..a35ae3b28cd2b3e3b588181fc2bc9e1b9e9a436d 100644
--- a/cc/scrollbar_layer_impl.h
+++ b/cc/scrollbar_layer_impl.h
@@ -18,7 +18,7 @@ class ScrollView;
class CC_EXPORT ScrollbarLayerImpl : public LayerImpl {
public:
- static scoped_ptr<ScrollbarLayerImpl> create(int id);
+ static scoped_ptr<ScrollbarLayerImpl> create(LayerTreeHostImpl* hostImpl, int id);
virtual ~ScrollbarLayerImpl();
ScrollbarGeometryFixedThumb* scrollbarGeometry() const { return m_geometry.get(); }
@@ -45,7 +45,7 @@ public:
virtual void didLoseOutputSurface() OVERRIDE;
protected:
- explicit ScrollbarLayerImpl(int id);
+ ScrollbarLayerImpl(LayerTreeHostImpl* hostImpl, int id);
private:
// nested class only to avoid namespace problem
« no previous file with comments | « cc/scrollbar_layer.cc ('k') | cc/scrollbar_layer_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698