| 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_;
|
| };
|
|
|
|
|