OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CHROME_BROWSER_UI_ASH_CHROME_SHELL_DELEGATE_H_ | 5 #ifndef CHROME_BROWSER_UI_ASH_CHROME_SHELL_DELEGATE_H_ |
6 #define CHROME_BROWSER_UI_ASH_CHROME_SHELL_DELEGATE_H_ | 6 #define CHROME_BROWSER_UI_ASH_CHROME_SHELL_DELEGATE_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "ash/launcher/launcher_types.h" | 10 #include "ash/launcher/launcher_types.h" |
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
70 virtual void ToggleHighContrast() OVERRIDE; | 70 virtual void ToggleHighContrast() OVERRIDE; |
71 virtual bool IsSpokenFeedbackEnabled() const OVERRIDE; | 71 virtual bool IsSpokenFeedbackEnabled() const OVERRIDE; |
72 virtual void ToggleSpokenFeedback( | 72 virtual void ToggleSpokenFeedback( |
73 ash::AccessibilityNotificationVisibility notify) OVERRIDE; | 73 ash::AccessibilityNotificationVisibility notify) OVERRIDE; |
74 virtual bool IsHighContrastEnabled() const OVERRIDE; | 74 virtual bool IsHighContrastEnabled() const OVERRIDE; |
75 virtual void SetMagnifierEnabled(bool enabled) OVERRIDE; | 75 virtual void SetMagnifierEnabled(bool enabled) OVERRIDE; |
76 virtual void SetMagnifierType(ash::MagnifierType type) OVERRIDE; | 76 virtual void SetMagnifierType(ash::MagnifierType type) OVERRIDE; |
77 virtual bool IsMagnifierEnabled() const OVERRIDE; | 77 virtual bool IsMagnifierEnabled() const OVERRIDE; |
78 virtual ash::MagnifierType GetMagnifierType() const OVERRIDE; | 78 virtual ash::MagnifierType GetMagnifierType() const OVERRIDE; |
79 virtual bool ShouldAlwaysShowAccessibilityMenu() const OVERRIDE; | 79 virtual bool ShouldAlwaysShowAccessibilityMenu() const OVERRIDE; |
| 80 virtual void SilenceSpokenFeedback() const OVERRIDE; |
80 virtual app_list::AppListViewDelegate* CreateAppListViewDelegate() OVERRIDE; | 81 virtual app_list::AppListViewDelegate* CreateAppListViewDelegate() OVERRIDE; |
81 virtual ash::LauncherDelegate* CreateLauncherDelegate( | 82 virtual ash::LauncherDelegate* CreateLauncherDelegate( |
82 ash::LauncherModel* model) OVERRIDE; | 83 ash::LauncherModel* model) OVERRIDE; |
83 virtual ash::SystemTrayDelegate* CreateSystemTrayDelegate() OVERRIDE; | 84 virtual ash::SystemTrayDelegate* CreateSystemTrayDelegate() OVERRIDE; |
84 virtual ash::UserWallpaperDelegate* CreateUserWallpaperDelegate() OVERRIDE; | 85 virtual ash::UserWallpaperDelegate* CreateUserWallpaperDelegate() OVERRIDE; |
85 virtual ash::CapsLockDelegate* CreateCapsLockDelegate() OVERRIDE; | 86 virtual ash::CapsLockDelegate* CreateCapsLockDelegate() OVERRIDE; |
86 virtual ash::SessionStateDelegate* CreateSessionStateDelegate() OVERRIDE; | 87 virtual ash::SessionStateDelegate* CreateSessionStateDelegate() OVERRIDE; |
87 virtual aura::client::UserActionClient* CreateUserActionClient() OVERRIDE; | 88 virtual aura::client::UserActionClient* CreateUserActionClient() OVERRIDE; |
88 virtual void OpenFeedbackPage() OVERRIDE; | 89 virtual void OpenFeedbackPage() OVERRIDE; |
89 virtual void RecordUserMetricsAction(ash::UserMetricsAction action) OVERRIDE; | 90 virtual void RecordUserMetricsAction(ash::UserMetricsAction action) OVERRIDE; |
(...skipping 27 matching lines...) Expand all Loading... |
117 scoped_ptr<ash::WindowPositioner> window_positioner_; | 118 scoped_ptr<ash::WindowPositioner> window_positioner_; |
118 | 119 |
119 base::WeakPtrFactory<ChromeShellDelegate> weak_factory_; | 120 base::WeakPtrFactory<ChromeShellDelegate> weak_factory_; |
120 | 121 |
121 ChromeLauncherController* launcher_delegate_; | 122 ChromeLauncherController* launcher_delegate_; |
122 | 123 |
123 DISALLOW_COPY_AND_ASSIGN(ChromeShellDelegate); | 124 DISALLOW_COPY_AND_ASSIGN(ChromeShellDelegate); |
124 }; | 125 }; |
125 | 126 |
126 #endif // CHROME_BROWSER_UI_ASH_CHROME_SHELL_DELEGATE_H_ | 127 #endif // CHROME_BROWSER_UI_ASH_CHROME_SHELL_DELEGATE_H_ |
OLD | NEW |