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

Unified Diff: cc/delegating_renderer_unittest.cc

Issue 12211110: Implement WebKit::WebUnitTestSupport::createLayerTreeViewForTesting() (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: add enum, fix NON_EXPORTED_BASE Created 7 years, 10 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/delegated_renderer_layer_impl_unittest.cc ('k') | cc/fake_web_graphics_context_3d.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/delegating_renderer_unittest.cc
diff --git a/cc/delegating_renderer_unittest.cc b/cc/delegating_renderer_unittest.cc
index de96046809c4f106971b7564b27193f2293657f0..8b35f1b778e8551bc28346605f32bd23650faa65 100644
--- a/cc/delegating_renderer_unittest.cc
+++ b/cc/delegating_renderer_unittest.cc
@@ -18,8 +18,8 @@ class DelegatingRendererTest : public ThreadedTest {
virtual ~DelegatingRendererTest() {}
virtual scoped_ptr<OutputSurface> createOutputSurface() OVERRIDE {
- scoped_ptr<FakeWebGraphicsContext3D> context3d =
- FakeWebGraphicsContext3D::Create(
+ scoped_ptr<TestWebGraphicsContext3D> context3d =
+ TestWebGraphicsContext3D::Create(
WebKit::WebGraphicsContext3D::Attributes());
context3d_ = context3d.get();
scoped_ptr<FakeOutputSurface> output_surface =
@@ -30,7 +30,7 @@ class DelegatingRendererTest : public ThreadedTest {
}
protected:
- FakeWebGraphicsContext3D* context3d_;
+ TestWebGraphicsContext3D* context3d_;
FakeOutputSurface* output_surface_;
};
« no previous file with comments | « cc/delegated_renderer_layer_impl_unittest.cc ('k') | cc/fake_web_graphics_context_3d.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698