| Index: ash/shell.h
|
| diff --git a/ash/shell.h b/ash/shell.h
|
| index bb273232fa20c4616afcb859450cd5083a44f24e..cf49731fec9cb40bc38d4d7ba7df317c2d50a86c 100644
|
| --- a/ash/shell.h
|
| +++ b/ash/shell.h
|
| @@ -102,7 +102,6 @@ class EventClientImpl;
|
| class EventRewriterEventFilter;
|
| class EventTransformationHandler;
|
| class FirstRunHelper;
|
| -class FocusCycler;
|
| class GPUSupport;
|
| class HighContrastController;
|
| class KeyboardUI;
|
| @@ -183,11 +182,6 @@ class ASH_EXPORT Shell : public SystemModalContainerEventFilterDelegate,
|
| public:
|
| typedef std::vector<RootWindowController*> RootWindowControllerList;
|
|
|
| - enum Direction {
|
| - FORWARD,
|
| - BACKWARD
|
| - };
|
| -
|
| // A shell must be explicitly created so that it can call |Init()| with the
|
| // delegate set. |delegate| can be NULL (if not required for initialization).
|
| // Takes ownership of |delegate|.
|
| @@ -275,9 +269,6 @@ class ASH_EXPORT Shell : public SystemModalContainerEventFilterDelegate,
|
| views::NonClientFrameView* CreateDefaultNonClientFrameView(
|
| views::Widget* widget);
|
|
|
| - // Rotates focus through containers that can receive focus.
|
| - void RotateFocus(Direction direction);
|
| -
|
| // Sets the work area insets of the display that contains |window|,
|
| // this notifies observers too.
|
| // TODO(sky): this no longer really replicates what happens and is unreliable.
|
| @@ -385,7 +376,6 @@ class ASH_EXPORT Shell : public SystemModalContainerEventFilterDelegate,
|
| WindowSelectorController* window_selector_controller() {
|
| return window_selector_controller_.get();
|
| }
|
| - FocusCycler* focus_cycler() { return focus_cycler_.get(); }
|
| WindowTreeHostManager* window_tree_host_manager() {
|
| return window_tree_host_manager_.get();
|
| }
|
| @@ -690,7 +680,6 @@ class ASH_EXPORT Shell : public SystemModalContainerEventFilterDelegate,
|
| std::unique_ptr<VideoDetector> video_detector_;
|
| std::unique_ptr<WindowCycleController> window_cycle_controller_;
|
| std::unique_ptr<WindowSelectorController> window_selector_controller_;
|
| - std::unique_ptr<FocusCycler> focus_cycler_;
|
| std::unique_ptr<WindowTreeHostManager> window_tree_host_manager_;
|
| std::unique_ptr<HighContrastController> high_contrast_controller_;
|
| std::unique_ptr<MagnificationController> magnification_controller_;
|
|
|