From f33db56b4a1b7b753e09028588b7d670ce5d5b26 Mon Sep 17 00:00:00 2001 From: "reveman@chromium.org" Date: Thu, 25 Oct 2012 03:25:55 +0000 Subject: cc: Rename LayerUpdater::Texture to LayerUpdater::Resource. BUG= TEST=cc_unittests Review URL: https://chromiumcodereview.appspot.com/11236078 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@164007 0039d316-1c4b-4281-b951-d872f2087c98 --- cc/test/tiled_layer_test_common.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'cc/test/tiled_layer_test_common.h') diff --git a/cc/test/tiled_layer_test_common.h b/cc/test/tiled_layer_test_common.h index 6f27a67..bcb5909 100644 --- a/cc/test/tiled_layer_test_common.h +++ b/cc/test/tiled_layer_test_common.h @@ -23,10 +23,10 @@ class FakeTiledLayer; class FakeLayerUpdater : public cc::LayerUpdater { public: - class Texture : public cc::LayerUpdater::Texture { + class Resource : public cc::LayerUpdater::Resource { public: - Texture(FakeLayerUpdater*, scoped_ptr); - virtual ~Texture(); + Resource(FakeLayerUpdater*, scoped_ptr); + virtual ~Resource(); virtual void update(cc::TextureUpdateQueue&, const cc::IntRect&, const cc::IntSize&, bool, cc::RenderingStats&) OVERRIDE; @@ -37,7 +37,7 @@ public: FakeLayerUpdater(); - virtual scoped_ptr createTexture(cc::PrioritizedTextureManager*) OVERRIDE; + virtual scoped_ptr createResource(cc::PrioritizedTextureManager*) OVERRIDE; virtual void prepareToUpdate(const cc::IntRect& contentRect, const cc::IntSize&, float, float, cc::IntRect& resultingOpaqueRect, cc::RenderingStats&) OVERRIDE; // Sets the rect to invalidate during the next call to prepareToUpdate(). After the next -- cgit v1.1