| Index: content/test/test_render_view_host.h
|
| diff --git a/content/test/test_render_view_host.h b/content/test/test_render_view_host.h
|
| index 3b6a0c95094c38a2722806f0894b8dd6009bcd75..577b1411e655af092e3c2d230ee45188cb28b6e1 100644
|
| --- a/content/test/test_render_view_host.h
|
| +++ b/content/test/test_render_view_host.h
|
| @@ -77,6 +77,8 @@ class TestRenderWidgetHostView : public RenderWidgetHostViewBase {
|
| void WasUnOccluded() override;
|
| void WasOccluded() override;
|
| gfx::Rect GetViewBounds() const override;
|
| + void SetBackgroundColor(SkColor color) override;
|
| + SkColor background_color() const override;
|
| #if defined(OS_MACOSX)
|
| ui::AcceleratedWidgetMac* GetAcceleratedWidgetMac() const override;
|
| void SetActive(bool active) override;
|
| @@ -129,6 +131,7 @@ class TestRenderWidgetHostView : public RenderWidgetHostViewBase {
|
| bool is_occluded_;
|
| bool did_swap_compositor_frame_;
|
| bool did_change_compositor_frame_sink_ = false;
|
| + SkColor background_color_;
|
| ui::DummyTextInputClient text_input_client_;
|
| };
|
|
|
|
|