| Index: trunk/src/ui/compositor/test/test_compositor_host_ozone.cc
 | 
| ===================================================================
 | 
| --- trunk/src/ui/compositor/test/test_compositor_host_ozone.cc	(revision 287765)
 | 
| +++ trunk/src/ui/compositor/test/test_compositor_host_ozone.cc	(working copy)
 | 
| @@ -27,6 +27,8 @@
 | 
|    virtual void Show() OVERRIDE;
 | 
|    virtual ui::Compositor* GetCompositor() OVERRIDE;
 | 
|  
 | 
| +  void Draw();
 | 
| +
 | 
|    gfx::Rect bounds_;
 | 
|  
 | 
|    ui::ContextFactory* context_factory_;
 | 
| @@ -62,6 +64,11 @@
 | 
|    return compositor_.get();
 | 
|  }
 | 
|  
 | 
| +void TestCompositorHostOzone::Draw() {
 | 
| +  if (compositor_.get())
 | 
| +    compositor_->Draw();
 | 
| +}
 | 
| +
 | 
|  // static
 | 
|  TestCompositorHost* TestCompositorHost::Create(
 | 
|      const gfx::Rect& bounds,
 | 
| 
 |