diff options
author | reveman@google.com <reveman@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-11-07 21:16:40 +0000 |
---|---|---|
committer | reveman@google.com <reveman@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-11-07 21:16:40 +0000 |
commit | 3b10a30273e8efe972c623f859a50b5a8643a063 (patch) | |
tree | 4cf6423c7541350104105c61cb3293356805bfa4 /cc/image_layer_updater.h | |
parent | 34f3e03f8de771a2bf954c9f029804768fec2a5b (diff) | |
download | chromium_src-3b10a30273e8efe972c623f859a50b5a8643a063.zip chromium_src-3b10a30273e8efe972c623f859a50b5a8643a063.tar.gz chromium_src-3b10a30273e8efe972c623f859a50b5a8643a063.tar.bz2 |
cc: Rename PrioritizedTexture to PrioritizedResource.
sed -e '
s/PrioritizedTexture/PrioritizedResource/g
s/prioritized_texture/prioritized_resource/g
s/PRIORITIZED_TEXTURE/PRIORITIZED_RESOURCE/g
s/managedTexture/managedResource/g
s/textureManager/resourceManager/g
s/constentsTextureManager/constentsResourceManager/g
'
BUG=
TEST=cc_unittests
Review URL: https://codereview.chromium.org/11369109
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@166520 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'cc/image_layer_updater.h')
-rw-r--r-- | cc/image_layer_updater.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cc/image_layer_updater.h b/cc/image_layer_updater.h index 89c26b2..3a70dd3 100644 --- a/cc/image_layer_updater.h +++ b/cc/image_layer_updater.h @@ -17,7 +17,7 @@ class ImageLayerUpdater : public LayerUpdater { public: class Resource : public LayerUpdater::Resource { public: - Resource(ImageLayerUpdater* updater, scoped_ptr<PrioritizedTexture> texture) + Resource(ImageLayerUpdater* updater, scoped_ptr<PrioritizedResource> texture) : LayerUpdater::Resource(texture.Pass()) , m_updater(updater) { @@ -32,9 +32,9 @@ public: static scoped_refptr<ImageLayerUpdater> create(); virtual scoped_ptr<LayerUpdater::Resource> createResource( - PrioritizedTextureManager*) OVERRIDE; + PrioritizedResourceManager*) OVERRIDE; - void updateTexture(ResourceUpdateQueue&, PrioritizedTexture*, const gfx::Rect& sourceRect, const gfx::Vector2d& destOffset, bool partialUpdate); + void updateTexture(ResourceUpdateQueue&, PrioritizedResource*, const gfx::Rect& sourceRect, const gfx::Vector2d& destOffset, bool partialUpdate); void setBitmap(const SkBitmap&); |