diff options
author | reveman@google.com <reveman@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-10-23 18:34:51 +0000 |
---|---|---|
committer | reveman@google.com <reveman@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-10-23 18:34:51 +0000 |
commit | 64d8d39667043c562e0e1b0384c1e662b1accfc1 (patch) | |
tree | 458a6d9ce8fdef0b56d56d9b8840c6bc17ae5d43 /cc/scrollbar_layer.h | |
parent | 589029cb1163bf74ae28b5ba7880fac6b9d099c6 (diff) | |
download | chromium_src-64d8d39667043c562e0e1b0384c1e662b1accfc1.zip chromium_src-64d8d39667043c562e0e1b0384c1e662b1accfc1.tar.gz chromium_src-64d8d39667043c562e0e1b0384c1e662b1accfc1.tar.bz2 |
cc: Rename LayerTextureUpdater to LayerUpdater.
sed -e '
s/TextureUpdater/Updater/g
s/textureUpdater/updater/g
s/texture_updater\.h/updater.h/g
s/texture_updater\.cc/updater.cc/g
s/TEXTURE_UPDATER_H_/UPDATER_H_/g
'
BUG=
TEST=cc_unittests
Review URL: https://codereview.chromium.org/11231082
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@163615 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'cc/scrollbar_layer.h')
-rw-r--r-- | cc/scrollbar_layer.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/cc/scrollbar_layer.h b/cc/scrollbar_layer.h index 370dca1..8be2d82 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_texture_updater.h" +#include "caching_bitmap_canvas_layer_updater.h" #include "cc/layer.h" #include <public/WebScrollbar.h> #include <public/WebScrollbarThemeGeometry.h> @@ -42,8 +42,8 @@ protected: virtual ~ScrollbarLayer(); private: - void updatePart(CachingBitmapCanvasLayerTextureUpdater*, LayerTextureUpdater::Texture*, const IntRect&, TextureUpdateQueue&, RenderingStats&); - void createTextureUpdaterIfNeeded(); + void updatePart(CachingBitmapCanvasLayerUpdater*, LayerUpdater::Texture*, const IntRect&, TextureUpdateQueue&, RenderingStats&); + void createUpdaterIfNeeded(); scoped_ptr<WebKit::WebScrollbar> m_scrollbar; WebKit::WebScrollbarThemePainter m_painter; @@ -52,14 +52,14 @@ private: GLenum m_textureFormat; - scoped_refptr<CachingBitmapCanvasLayerTextureUpdater> m_backTrackUpdater; - scoped_refptr<CachingBitmapCanvasLayerTextureUpdater> m_foreTrackUpdater; - scoped_refptr<CachingBitmapCanvasLayerTextureUpdater> m_thumbUpdater; + scoped_refptr<CachingBitmapCanvasLayerUpdater> m_backTrackUpdater; + scoped_refptr<CachingBitmapCanvasLayerUpdater> m_foreTrackUpdater; + scoped_refptr<CachingBitmapCanvasLayerUpdater> m_thumbUpdater; // All the parts of the scrollbar except the thumb - scoped_ptr<LayerTextureUpdater::Texture> m_backTrack; - scoped_ptr<LayerTextureUpdater::Texture> m_foreTrack; - scoped_ptr<LayerTextureUpdater::Texture> m_thumb; + scoped_ptr<LayerUpdater::Texture> m_backTrack; + scoped_ptr<LayerUpdater::Texture> m_foreTrack; + scoped_ptr<LayerUpdater::Texture> m_thumb; }; } |