| 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 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 <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "ash/shell_delegate.h" | 10 #include "ash/shell_delegate.h" |
| (...skipping 24 matching lines...) Expand all Loading... |
| 35 virtual bool IsRunningInForcedAppMode() const OVERRIDE; | 35 virtual bool IsRunningInForcedAppMode() const OVERRIDE; |
| 36 virtual void PreInit() OVERRIDE; | 36 virtual void PreInit() OVERRIDE; |
| 37 virtual void Shutdown() OVERRIDE; | 37 virtual void Shutdown() OVERRIDE; |
| 38 virtual void Exit() OVERRIDE; | 38 virtual void Exit() OVERRIDE; |
| 39 virtual void NewTab() OVERRIDE; | 39 virtual void NewTab() OVERRIDE; |
| 40 virtual void NewWindow(bool incognito) OVERRIDE; | 40 virtual void NewWindow(bool incognito) OVERRIDE; |
| 41 virtual void ToggleFullscreen() OVERRIDE; | 41 virtual void ToggleFullscreen() OVERRIDE; |
| 42 virtual void ToggleMaximized() OVERRIDE; | 42 virtual void ToggleMaximized() OVERRIDE; |
| 43 virtual void OpenFileManager(bool as_dialog) OVERRIDE; | 43 virtual void OpenFileManager(bool as_dialog) OVERRIDE; |
| 44 virtual void OpenCrosh() OVERRIDE; | 44 virtual void OpenCrosh() OVERRIDE; |
| 45 virtual void OpenMobileSetup(const std::string& service_path) OVERRIDE; | |
| 46 virtual void RestoreTab() OVERRIDE; | 45 virtual void RestoreTab() OVERRIDE; |
| 47 virtual void ShowKeyboardOverlay() OVERRIDE; | 46 virtual void ShowKeyboardOverlay() OVERRIDE; |
| 48 virtual keyboard::KeyboardControllerProxy* | 47 virtual keyboard::KeyboardControllerProxy* |
| 49 CreateKeyboardControllerProxy() OVERRIDE; | 48 CreateKeyboardControllerProxy() OVERRIDE; |
| 50 virtual void ShowTaskManager() OVERRIDE; | 49 virtual void ShowTaskManager() OVERRIDE; |
| 51 virtual content::BrowserContext* GetCurrentBrowserContext() OVERRIDE; | 50 virtual content::BrowserContext* GetCurrentBrowserContext() OVERRIDE; |
| 52 virtual void ToggleSpokenFeedback( | 51 virtual void ToggleSpokenFeedback( |
| 53 AccessibilityNotificationVisibility notify) OVERRIDE; | 52 AccessibilityNotificationVisibility notify) OVERRIDE; |
| 54 virtual bool IsSpokenFeedbackEnabled() const OVERRIDE; | 53 virtual bool IsSpokenFeedbackEnabled() const OVERRIDE; |
| 55 virtual void ToggleHighContrast() OVERRIDE; | 54 virtual void ToggleHighContrast() OVERRIDE; |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 98 | 97 |
| 99 TestSessionStateDelegate* test_session_state_delegate_; // Not owned. | 98 TestSessionStateDelegate* test_session_state_delegate_; // Not owned. |
| 100 | 99 |
| 101 DISALLOW_COPY_AND_ASSIGN(TestShellDelegate); | 100 DISALLOW_COPY_AND_ASSIGN(TestShellDelegate); |
| 102 }; | 101 }; |
| 103 | 102 |
| 104 } // namespace test | 103 } // namespace test |
| 105 } // namespace ash | 104 } // namespace ash |
| 106 | 105 |
| 107 #endif // ASH_TEST_TEST_SHELL_DELEGATE_H_ | 106 #endif // ASH_TEST_TEST_SHELL_DELEGATE_H_ |
| OLD | NEW |