| Index: ash/root_window_controller.h
|
| diff --git a/ash/root_window_controller.h b/ash/root_window_controller.h
|
| index b6a1a2916e1d884c87d7fe5504f2b65449a60f67..8ec271deb49551018a6689fed716bdc6ecdc2200 100644
|
| --- a/ash/root_window_controller.h
|
| +++ b/ash/root_window_controller.h
|
| @@ -112,7 +112,12 @@ class ASH_EXPORT RootWindowController : public ShellObserver {
|
| virtual ~RootWindowController();
|
|
|
| aura::Window* root_window() { return dispatcher()->window(); }
|
| + const aura::Window* root_window() const { return dispatcher()->window(); }
|
| +
|
| aura::WindowEventDispatcher* dispatcher() { return dispatcher_.get(); }
|
| + const aura::WindowEventDispatcher* dispatcher() const {
|
| + return dispatcher_.get();
|
| + }
|
|
|
| RootWindowLayoutManager* root_window_layout() { return root_window_layout_; }
|
|
|
|
|