diff options
author | reveman@google.com <reveman@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-10-25 17:48:07 +0000 |
---|---|---|
committer | reveman@google.com <reveman@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-10-25 17:48:07 +0000 |
commit | 9dcd07a68e2e2208ac6455b37a6c1f760653b7e6 (patch) | |
tree | b71491414cb0fae068435cf15058945319930a70 /cc/scrollbar_layer.h | |
parent | a4ed76ec4efb2ea4e447b3ae3e70cf940cb8f333 (diff) | |
download | chromium_src-9dcd07a68e2e2208ac6455b37a6c1f760653b7e6.zip chromium_src-9dcd07a68e2e2208ac6455b37a6c1f760653b7e6.tar.gz chromium_src-9dcd07a68e2e2208ac6455b37a6c1f760653b7e6.tar.bz2 |
cc: Rename CanvasLayerUpdater to ContentLayerUpdater.
sed -e '
s/CanvasLayerUpdater/ContentLayerUpdater/g
s/canvas_layer_updater/content_layer_updater/g
'
BUG=
TEST=cc_unittests
Review URL: https://codereview.chromium.org/11271022
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@164104 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'cc/scrollbar_layer.h')
-rw-r--r-- | cc/scrollbar_layer.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/cc/scrollbar_layer.h b/cc/scrollbar_layer.h index cfa2fc3..885bea9 100644 --- a/cc/scrollbar_layer.h +++ b/cc/scrollbar_layer.h @@ -6,7 +6,7 @@ #ifndef ScrollbarLayerChromium_h #define ScrollbarLayerChromium_h -#include "caching_bitmap_canvas_layer_updater.h" +#include "caching_bitmap_content_layer_updater.h" #include "cc/layer.h" #include <public/WebScrollbar.h> #include <public/WebScrollbarThemeGeometry.h> @@ -42,7 +42,7 @@ protected: virtual ~ScrollbarLayer(); private: - void updatePart(CachingBitmapCanvasLayerUpdater*, LayerUpdater::Resource*, const IntRect&, TextureUpdateQueue&, RenderingStats&); + void updatePart(CachingBitmapContentLayerUpdater*, LayerUpdater::Resource*, const IntRect&, TextureUpdateQueue&, RenderingStats&); void createUpdaterIfNeeded(); scoped_ptr<WebKit::WebScrollbar> m_scrollbar; @@ -52,9 +52,9 @@ private: GLenum m_textureFormat; - scoped_refptr<CachingBitmapCanvasLayerUpdater> m_backTrackUpdater; - scoped_refptr<CachingBitmapCanvasLayerUpdater> m_foreTrackUpdater; - scoped_refptr<CachingBitmapCanvasLayerUpdater> m_thumbUpdater; + scoped_refptr<CachingBitmapContentLayerUpdater> m_backTrackUpdater; + scoped_refptr<CachingBitmapContentLayerUpdater> m_foreTrackUpdater; + scoped_refptr<CachingBitmapContentLayerUpdater> m_thumbUpdater; // All the parts of the scrollbar except the thumb scoped_ptr<LayerUpdater::Resource> m_backTrack; |