| Index: ui/aura/root_window.h
 | 
| diff --git a/ui/aura/root_window.h b/ui/aura/root_window.h
 | 
| index a9d392a15d695ecb82baf7339a9878e2df0a4f49..e8104e40a324e03aaff1e9afae121eb5f756456d 100644
 | 
| --- a/ui/aura/root_window.h
 | 
| +++ b/ui/aura/root_window.h
 | 
| @@ -109,6 +109,9 @@ class AURA_EXPORT RootWindow : public ui::CompositorDelegate,
 | 
|    // Shows the root window host.
 | 
|    void ShowRootWindow();
 | 
|  
 | 
| +  // Hides the root window host.
 | 
| +  void HideRootWindow();
 | 
| +
 | 
|    RootWindowHostDelegate* AsRootWindowHostDelegate();
 | 
|  
 | 
|    // Sets the size of the root window.
 | 
| @@ -304,6 +307,7 @@ class AURA_EXPORT RootWindow : public ui::CompositorDelegate,
 | 
|    virtual bool OnHostTouchEvent(ui::TouchEvent* event) OVERRIDE;
 | 
|    virtual void OnHostLostCapture() OVERRIDE;
 | 
|    virtual void OnHostPaint() OVERRIDE;
 | 
| +  virtual void OnHostMoved(const gfx::Point& origin) OVERRIDE;
 | 
|    virtual void OnHostResized(const gfx::Size& size) OVERRIDE;
 | 
|    virtual float GetDeviceScaleFactor() OVERRIDE;
 | 
|    virtual RootWindow* AsRootWindow() OVERRIDE;
 | 
| 
 |