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

Unified Diff: cc/scrollbar_layer.h

Issue 11143027: cc: Remove wtf includes from *LayerTextureUpdater headers (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Out of line CBCLTU dtor 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/layer_texture_updater.h ('k') | cc/scrollbar_layer.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/scrollbar_layer.h
diff --git a/cc/scrollbar_layer.h b/cc/scrollbar_layer.h
index 7f0f13c0279e20a01821654403703c120b3497f8..264577498bdab70e1eaff082818c7e837e6cbabf 100644
--- a/cc/scrollbar_layer.h
+++ b/cc/scrollbar_layer.h
@@ -52,14 +52,14 @@ private:
GC3Denum m_textureFormat;
- RefPtr<CachingBitmapCanvasLayerTextureUpdater> m_backTrackUpdater;
- RefPtr<CachingBitmapCanvasLayerTextureUpdater> m_foreTrackUpdater;
- RefPtr<CachingBitmapCanvasLayerTextureUpdater> m_thumbUpdater;
+ scoped_refptr<CachingBitmapCanvasLayerTextureUpdater> m_backTrackUpdater;
+ scoped_refptr<CachingBitmapCanvasLayerTextureUpdater> m_foreTrackUpdater;
+ scoped_refptr<CachingBitmapCanvasLayerTextureUpdater> m_thumbUpdater;
// All the parts of the scrollbar except the thumb
- OwnPtr<LayerTextureUpdater::Texture> m_backTrack;
- OwnPtr<LayerTextureUpdater::Texture> m_foreTrack;
- OwnPtr<LayerTextureUpdater::Texture> m_thumb;
+ scoped_ptr<LayerTextureUpdater::Texture> m_backTrack;
+ scoped_ptr<LayerTextureUpdater::Texture> m_foreTrack;
+ scoped_ptr<LayerTextureUpdater::Texture> m_thumb;
};
}
« no previous file with comments | « cc/layer_texture_updater.h ('k') | cc/scrollbar_layer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698