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

Side by Side Diff: chrome/browser/ui/ash/chrome_shell_delegate.h

Issue 16175004: Large Cursor: Add the toggle menuitem to a11y menu in uber tray (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix test failure on win Created 7 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
64 virtual content::BrowserContext* GetCurrentBrowserContext() OVERRIDE; 64 virtual content::BrowserContext* GetCurrentBrowserContext() OVERRIDE;
65 virtual void ToggleHighContrast() OVERRIDE; 65 virtual void ToggleHighContrast() OVERRIDE;
66 virtual bool IsSpokenFeedbackEnabled() const OVERRIDE; 66 virtual bool IsSpokenFeedbackEnabled() const OVERRIDE;
67 virtual void ToggleSpokenFeedback( 67 virtual void ToggleSpokenFeedback(
68 ash::AccessibilityNotificationVisibility notify) OVERRIDE; 68 ash::AccessibilityNotificationVisibility notify) OVERRIDE;
69 virtual bool IsHighContrastEnabled() const OVERRIDE; 69 virtual bool IsHighContrastEnabled() const OVERRIDE;
70 virtual void SetMagnifierEnabled(bool enabled) OVERRIDE; 70 virtual void SetMagnifierEnabled(bool enabled) OVERRIDE;
71 virtual void SetMagnifierType(ash::MagnifierType type) OVERRIDE; 71 virtual void SetMagnifierType(ash::MagnifierType type) OVERRIDE;
72 virtual bool IsMagnifierEnabled() const OVERRIDE; 72 virtual bool IsMagnifierEnabled() const OVERRIDE;
73 virtual ash::MagnifierType GetMagnifierType() const OVERRIDE; 73 virtual ash::MagnifierType GetMagnifierType() const OVERRIDE;
74 virtual void SetLargeCursorEnabled(bool enabled) OVERRIDE;
75 virtual bool IsLargeCursorEnabled() const OVERRIDE;
74 virtual bool ShouldAlwaysShowAccessibilityMenu() const OVERRIDE; 76 virtual bool ShouldAlwaysShowAccessibilityMenu() const OVERRIDE;
75 virtual void SilenceSpokenFeedback() const OVERRIDE; 77 virtual void SilenceSpokenFeedback() const OVERRIDE;
76 virtual app_list::AppListViewDelegate* CreateAppListViewDelegate() OVERRIDE; 78 virtual app_list::AppListViewDelegate* CreateAppListViewDelegate() OVERRIDE;
77 virtual ash::LauncherDelegate* CreateLauncherDelegate( 79 virtual ash::LauncherDelegate* CreateLauncherDelegate(
78 ash::LauncherModel* model) OVERRIDE; 80 ash::LauncherModel* model) OVERRIDE;
79 virtual ash::SystemTrayDelegate* CreateSystemTrayDelegate() OVERRIDE; 81 virtual ash::SystemTrayDelegate* CreateSystemTrayDelegate() OVERRIDE;
80 virtual ash::UserWallpaperDelegate* CreateUserWallpaperDelegate() OVERRIDE; 82 virtual ash::UserWallpaperDelegate* CreateUserWallpaperDelegate() OVERRIDE;
81 virtual ash::CapsLockDelegate* CreateCapsLockDelegate() OVERRIDE; 83 virtual ash::CapsLockDelegate* CreateCapsLockDelegate() OVERRIDE;
82 virtual ash::SessionStateDelegate* CreateSessionStateDelegate() OVERRIDE; 84 virtual ash::SessionStateDelegate* CreateSessionStateDelegate() OVERRIDE;
83 virtual aura::client::UserActionClient* CreateUserActionClient() OVERRIDE; 85 virtual aura::client::UserActionClient* CreateUserActionClient() OVERRIDE;
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
117 base::WeakPtrFactory<ChromeShellDelegate> weak_factory_; 119 base::WeakPtrFactory<ChromeShellDelegate> weak_factory_;
118 120
119 ChromeLauncherController* launcher_delegate_; 121 ChromeLauncherController* launcher_delegate_;
120 122
121 scoped_ptr<TabRestoreHelper> tab_restore_helper_; 123 scoped_ptr<TabRestoreHelper> tab_restore_helper_;
122 124
123 DISALLOW_COPY_AND_ASSIGN(ChromeShellDelegate); 125 DISALLOW_COPY_AND_ASSIGN(ChromeShellDelegate);
124 }; 126 };
125 127
126 #endif // CHROME_BROWSER_UI_ASH_CHROME_SHELL_DELEGATE_H_ 128 #endif // CHROME_BROWSER_UI_ASH_CHROME_SHELL_DELEGATE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698