diff options
Diffstat (limited to 'cc/test/CCTiledLayerTestCommon.cpp')
-rw-r--r-- | cc/test/CCTiledLayerTestCommon.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/cc/test/CCTiledLayerTestCommon.cpp b/cc/test/CCTiledLayerTestCommon.cpp index 542d459..519f426 100644 --- a/cc/test/CCTiledLayerTestCommon.cpp +++ b/cc/test/CCTiledLayerTestCommon.cpp @@ -6,7 +6,7 @@ #include "CCTiledLayerTestCommon.h" -using namespace WebCore; +using namespace cc; namespace WebKitTests { @@ -26,7 +26,7 @@ void FakeLayerTextureUpdater::Texture::updateRect(CCResourceProvider* resourcePr m_layer->updateRect(); } -void FakeLayerTextureUpdater::Texture::prepareRect(const IntRect&, WebCore::CCRenderingStats&) +void FakeLayerTextureUpdater::Texture::prepareRect(const IntRect&, cc::CCRenderingStats&) { m_layer->prepareRect(); } @@ -122,17 +122,17 @@ void FakeTiledLayerChromium::setTexturePriorities(const CCPriorityCalculator& ca } } -WebCore::CCPrioritizedTextureManager* FakeTiledLayerChromium::textureManager() const +cc::CCPrioritizedTextureManager* FakeTiledLayerChromium::textureManager() const { return m_textureManager; } -WebCore::LayerTextureUpdater* FakeTiledLayerChromium::textureUpdater() const +cc::LayerTextureUpdater* FakeTiledLayerChromium::textureUpdater() const { return m_fakeTextureUpdater.get(); } -WebCore::IntSize FakeTiledLayerWithScaledBounds::contentBounds() const +cc::IntSize FakeTiledLayerWithScaledBounds::contentBounds() const { return m_forcedContentBounds; } @@ -142,7 +142,7 @@ bool FakeTextureUploader::isBusy() return false; } -void FakeTextureUploader::uploadTexture(WebCore::CCResourceProvider* resourceProvider, Parameters upload) +void FakeTextureUploader::uploadTexture(cc::CCResourceProvider* resourceProvider, Parameters upload) { upload.texture->updateRect(resourceProvider, upload.sourceRect, upload.destOffset); } |