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

Unified Diff: components/exo/wm_helper.h

Issue 2890733005: Refactor backdrop that is currently used in the maximized mode. (Closed)
Patch Set: fix memory issue in AshTouchExplorationManager Created 3 years, 7 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 | « components/exo/shell_surface_unittest.cc ('k') | components/exo/wm_helper.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/exo/wm_helper.h
diff --git a/components/exo/wm_helper.h b/components/exo/wm_helper.h
index ad0aeb6ac5a49c4ade7b17c4aac25ecff5873d22..84245f6b7abbed25dc173e0d9b02ab6443df4080 100644
--- a/components/exo/wm_helper.h
+++ b/components/exo/wm_helper.h
@@ -63,14 +63,6 @@ class WMHelper {
virtual ~MaximizeModeObserver() {}
};
- class AccessibilityObserver {
- public:
- virtual void OnAccessibilityModeChanged() = 0;
-
- protected:
- virtual ~AccessibilityObserver() {}
- };
-
class InputDeviceEventObserver {
public:
virtual void OnKeyboardDeviceConfigurationChanged() = 0;
@@ -100,8 +92,6 @@ class WMHelper {
void RemoveCursorObserver(CursorObserver* observer);
void AddMaximizeModeObserver(MaximizeModeObserver* observer);
void RemoveMaximizeModeObserver(MaximizeModeObserver* observer);
- void AddAccessibilityObserver(AccessibilityObserver* observer);
- void RemoveAccessibilityObserver(AccessibilityObserver* observer);
void AddInputDeviceEventObserver(InputDeviceEventObserver* observer);
void RemoveInputDeviceEventObserver(InputDeviceEventObserver* observer);
void AddDisplayConfigurationObserver(DisplayConfigurationObserver* observer);
@@ -120,8 +110,6 @@ class WMHelper {
virtual void AddPostTargetHandler(ui::EventHandler* handler) = 0;
virtual void RemovePostTargetHandler(ui::EventHandler* handler) = 0;
virtual bool IsMaximizeModeWindowManagerEnabled() const = 0;
- virtual bool IsSpokenFeedbackEnabled() const = 0;
- virtual void PlayEarcon(int sound_key) const = 0;
protected:
WMHelper();
@@ -135,7 +123,6 @@ class WMHelper {
void NotifyMaximizeModeStarted();
void NotifyMaximizeModeEnding();
void NotifyMaximizeModeEnded();
- void NotifyAccessibilityModeChanged();
void NotifyKeyboardDeviceConfigurationChanged();
void NotifyDisplayConfigurationChanged();
@@ -144,7 +131,6 @@ class WMHelper {
base::ObserverList<FocusObserver> focus_observers_;
base::ObserverList<CursorObserver> cursor_observers_;
base::ObserverList<MaximizeModeObserver> maximize_mode_observers_;
- base::ObserverList<AccessibilityObserver> accessibility_observers_;
base::ObserverList<InputDeviceEventObserver> input_device_event_observers_;
base::ObserverList<DisplayConfigurationObserver> display_config_observers_;
« no previous file with comments | « components/exo/shell_surface_unittest.cc ('k') | components/exo/wm_helper.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698