Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4354)

Unified Diff: cc/CCLayerTreeHostImplTest.cpp

Issue 10914268: Change cc files from namespace WebCore to cc (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebased Created 8 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « cc/CCLayerTreeHostImpl.cpp ('k') | cc/CCLayerTreeHostTest.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/CCLayerTreeHostImplTest.cpp
diff --git a/cc/CCLayerTreeHostImplTest.cpp b/cc/CCLayerTreeHostImplTest.cpp
index e410b2208f6d159a313913a925ff0faba7d82c31..e7a4ea3c5d2f4278572dc97f767080593550f927 100644
--- a/cc/CCLayerTreeHostImplTest.cpp
+++ b/cc/CCLayerTreeHostImplTest.cpp
@@ -34,8 +34,8 @@
#include <public/WebVideoFrame.h>
#include <public/WebVideoFrameProvider.h>
+using namespace cc;
using namespace CCLayerTestCommon;
-using namespace WebCore;
using namespace WebKit;
using namespace WebKitTests;
@@ -2107,7 +2107,7 @@ public:
// Unlimited texture size.
virtual void getIntegerv(WGC3Denum pname, WGC3Dint* value)
{
- if (pname == WebCore::GraphicsContext3D::MAX_TEXTURE_SIZE)
+ if (pname == cc::GraphicsContext3D::MAX_TEXTURE_SIZE)
*value = 8192;
}
};
@@ -2422,7 +2422,7 @@ class StrictWebGraphicsContext3DWithIOSurface : public StrictWebGraphicsContext3
public:
virtual WebString getString(WGC3Denum name) OVERRIDE
{
- if (name == WebCore::GraphicsContext3D::EXTENSIONS)
+ if (name == cc::GraphicsContext3D::EXTENSIONS)
return WebString("GL_CHROMIUM_iosurface GL_ARB_texture_rectangle");
return WebString();
@@ -2433,7 +2433,7 @@ class FakeWebGraphicsContext3DWithIOSurface : public FakeWebGraphicsContext3D {
public:
virtual WebString getString(WGC3Denum name) OVERRIDE
{
- if (name == WebCore::GraphicsContext3D::EXTENSIONS)
+ if (name == cc::GraphicsContext3D::EXTENSIONS)
return WebString("GL_CHROMIUM_iosurface GL_ARB_texture_rectangle");
return WebString();
@@ -2623,7 +2623,7 @@ public:
virtual WebString getString(WGC3Denum name) OVERRIDE
{
- if (name == WebCore::GraphicsContext3D::EXTENSIONS)
+ if (name == cc::GraphicsContext3D::EXTENSIONS)
return WebString("GL_CHROMIUM_iosurface GL_ARB_texture_rectangle");
return WebString();
« no previous file with comments | « cc/CCLayerTreeHostImpl.cpp ('k') | cc/CCLayerTreeHostTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698