Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(658)

Unified Diff: ash/shell.h

Issue 2075923002: mash: Convert FocusCycler to wm common types and move to //ash/common (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ash/shelf/shelf_widget.cc ('k') | ash/shell.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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_;
« no previous file with comments | « ash/shelf/shelf_widget.cc ('k') | ash/shell.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698