| Index: ash/shell.h
|
| diff --git a/ash/shell.h b/ash/shell.h
|
| index f8649dc657c28234e7e25b94b46070ba76c56770..62ef0ff63a88ca6336dfe7b9ac944f7098f817f5 100644
|
| --- a/ash/shell.h
|
| +++ b/ash/shell.h
|
| @@ -462,6 +462,12 @@ class ASH_EXPORT Shell
|
| // Returns the launcher delegate, creating if necesary.
|
| LauncherDelegate* GetLauncherDelegate();
|
|
|
| + void SetTouchHudProjectionEnabled(bool enabled);
|
| +
|
| + bool is_touch_hud_projection_enabled() const {
|
| + return is_touch_hud_projection_enabled_;
|
| + }
|
| +
|
| private:
|
| FRIEND_TEST_ALL_PREFIXES(ExtendedDesktopTest, TestCursor);
|
| FRIEND_TEST_ALL_PREFIXES(WindowManagerTest, MouseEventCursors);
|
| @@ -604,6 +610,8 @@ class ASH_EXPORT Shell
|
| // For testing only: simulate that a modal window is open
|
| bool simulate_modal_window_open_for_testing_;
|
|
|
| + bool is_touch_hud_projection_enabled_;
|
| +
|
| DISALLOW_COPY_AND_ASSIGN(Shell);
|
| };
|
|
|
|
|