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

Unified Diff: cc/test/fake_graphics_context.h

Issue 11348371: cc: Move WebCompositorOutputSurface and related classes into cc/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: mynits Created 8 years 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
Index: cc/test/fake_graphics_context.h
diff --git a/cc/test/fake_graphics_context.h b/cc/test/fake_graphics_context.h
index aecfcc4026364e44f2b8f73d1690916c964f8484..8abfcffe72ad7809d1beb1549d3743c4cc51df87 100644
--- a/cc/test/fake_graphics_context.h
+++ b/cc/test/fake_graphics_context.h
@@ -7,14 +7,13 @@
#include "cc/graphics_context.h"
#include "cc/test/compositor_fake_web_graphics_context_3d.h"
-#include "cc/test/fake_web_compositor_output_surface.h"
-#include <public/WebCompositorOutputSurface.h>
+#include "cc/test/fake_output_surface.h"
namespace WebKit {
jamesr 2012/12/04 07:06:51 whaaa?
danakj 2012/12/04 18:15:34 ya.. changed to cc! We have a bunch of namespace
static inline scoped_ptr<cc::GraphicsContext> createFakeGraphicsContext()
{
- return FakeWebCompositorOutputSurface::create(CompositorFakeWebGraphicsContext3D::create(WebGraphicsContext3D::Attributes()).PassAs<WebKit::WebGraphicsContext3D>()).PassAs<cc::GraphicsContext>();
+ return cc::FakeOutputSurface::Create(CompositorFakeWebGraphicsContext3D::create(WebGraphicsContext3D::Attributes()).PassAs<WebKit::WebGraphicsContext3D>()).PassAs<cc::GraphicsContext>();
}
} // namespace WebKit

Powered by Google App Engine
This is Rietveld 408576698