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

Side by Side Diff: ash/test/test_shell_delegate.h

Issue 11830008: ash/immersive mode: Hide the launcher when entering immersive mode (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: call up via ShellDelegate Created 7 years, 11 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 ASH_TEST_TEST_SHELL_DELEGATE_H_ 5 #ifndef ASH_TEST_TEST_SHELL_DELEGATE_H_
6 #define ASH_TEST_TEST_SHELL_DELEGATE_H_ 6 #define ASH_TEST_TEST_SHELL_DELEGATE_H_
7 7
8 #include "ash/shell_delegate.h" 8 #include "ash/shell_delegate.h"
9 #include "base/compiler_specific.h" 9 #include "base/compiler_specific.h"
10 #include "base/memory/scoped_ptr.h" 10 #include "base/memory/scoped_ptr.h"
(...skipping 30 matching lines...) Expand all
41 virtual void ShowTaskManager() OVERRIDE; 41 virtual void ShowTaskManager() OVERRIDE;
42 virtual content::BrowserContext* GetCurrentBrowserContext() OVERRIDE; 42 virtual content::BrowserContext* GetCurrentBrowserContext() OVERRIDE;
43 virtual void ToggleSpokenFeedback( 43 virtual void ToggleSpokenFeedback(
44 AccessibilityNotificationVisibility notify) OVERRIDE; 44 AccessibilityNotificationVisibility notify) OVERRIDE;
45 virtual bool IsSpokenFeedbackEnabled() const OVERRIDE; 45 virtual bool IsSpokenFeedbackEnabled() const OVERRIDE;
46 virtual void ToggleHighContrast() OVERRIDE; 46 virtual void ToggleHighContrast() OVERRIDE;
47 virtual bool IsHighContrastEnabled() const OVERRIDE; 47 virtual bool IsHighContrastEnabled() const OVERRIDE;
48 virtual void SetMagnifier(MagnifierType type) OVERRIDE; 48 virtual void SetMagnifier(MagnifierType type) OVERRIDE;
49 virtual MagnifierType GetMagnifierType() const OVERRIDE; 49 virtual MagnifierType GetMagnifierType() const OVERRIDE;
50 virtual bool ShouldAlwaysShowAccessibilityMenu() const OVERRIDE; 50 virtual bool ShouldAlwaysShowAccessibilityMenu() const OVERRIDE;
51 virtual bool IsImmersiveMode() const OVERRIDE;
51 virtual app_list::AppListViewDelegate* CreateAppListViewDelegate() OVERRIDE; 52 virtual app_list::AppListViewDelegate* CreateAppListViewDelegate() OVERRIDE;
52 virtual LauncherDelegate* CreateLauncherDelegate( 53 virtual LauncherDelegate* CreateLauncherDelegate(
53 ash::LauncherModel* model) OVERRIDE; 54 ash::LauncherModel* model) OVERRIDE;
54 virtual SystemTrayDelegate* CreateSystemTrayDelegate() OVERRIDE; 55 virtual SystemTrayDelegate* CreateSystemTrayDelegate() OVERRIDE;
55 virtual UserWallpaperDelegate* CreateUserWallpaperDelegate() OVERRIDE; 56 virtual UserWallpaperDelegate* CreateUserWallpaperDelegate() OVERRIDE;
56 virtual CapsLockDelegate* CreateCapsLockDelegate() OVERRIDE; 57 virtual CapsLockDelegate* CreateCapsLockDelegate() OVERRIDE;
57 virtual aura::client::UserActionClient* CreateUserActionClient() OVERRIDE; 58 virtual aura::client::UserActionClient* CreateUserActionClient() OVERRIDE;
58 virtual void OpenFeedbackPage() OVERRIDE; 59 virtual void OpenFeedbackPage() OVERRIDE;
59 virtual void RecordUserMetricsAction(UserMetricsAction action) OVERRIDE; 60 virtual void RecordUserMetricsAction(UserMetricsAction action) OVERRIDE;
60 virtual void HandleMediaNextTrack() OVERRIDE; 61 virtual void HandleMediaNextTrack() OVERRIDE;
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
101 102
102 scoped_ptr<content::BrowserContext> current_browser_context_; 103 scoped_ptr<content::BrowserContext> current_browser_context_;
103 104
104 DISALLOW_COPY_AND_ASSIGN(TestShellDelegate); 105 DISALLOW_COPY_AND_ASSIGN(TestShellDelegate);
105 }; 106 };
106 107
107 } // namespace test 108 } // namespace test
108 } // namespace ash 109 } // namespace ash
109 110
110 #endif // ASH_TEST_TEST_SHELL_DELEGATE_H_ 111 #endif // ASH_TEST_TEST_SHELL_DELEGATE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698