| Index: cc/test/CCTiledLayerTestCommon.cpp
|
| diff --git a/cc/test/CCTiledLayerTestCommon.cpp b/cc/test/CCTiledLayerTestCommon.cpp
|
| index 542d4591f477754ceea80d948a0d91d48a530743..519f426d81a489061853d42978bacf2f1f5b8a0d 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);
|
| }
|
|
|