| 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 <memory> | 8 #include <memory> |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 53 TestSessionStateDelegate* CreateSessionStateDelegate() override; | 53 TestSessionStateDelegate* CreateSessionStateDelegate() override; |
| 54 AccessibilityDelegate* CreateAccessibilityDelegate() override; | 54 AccessibilityDelegate* CreateAccessibilityDelegate() override; |
| 55 MediaDelegate* CreateMediaDelegate() override; | 55 MediaDelegate* CreateMediaDelegate() override; |
| 56 std::unique_ptr<PaletteDelegate> CreatePaletteDelegate() override; | 56 std::unique_ptr<PaletteDelegate> CreatePaletteDelegate() override; |
| 57 ui::MenuModel* CreateContextMenu(WmShelf* wm_shelf, | 57 ui::MenuModel* CreateContextMenu(WmShelf* wm_shelf, |
| 58 const ShelfItem* item) override; | 58 const ShelfItem* item) override; |
| 59 GPUSupport* CreateGPUSupport() override; | 59 GPUSupport* CreateGPUSupport() override; |
| 60 base::string16 GetProductName() const override; | 60 base::string16 GetProductName() const override; |
| 61 gfx::Image GetDeprecatedAcceleratorImage() const override; | 61 gfx::Image GetDeprecatedAcceleratorImage() const override; |
| 62 | 62 |
| 63 bool IsTouchscreenEnabledInPrefs(bool use_local_state) const override; |
| 64 void SetTouchscreenEnabledInPrefs(bool enabled, |
| 65 bool use_local_state) override; |
| 66 void UpdateTouchscreenStatusFromPrefs() override; |
| 67 |
| 63 int num_exit_requests() const { return num_exit_requests_; } | 68 int num_exit_requests() const { return num_exit_requests_; } |
| 64 | 69 |
| 65 app_list::AppListPresenterImpl* app_list_presenter() { | 70 app_list::AppListPresenterImpl* app_list_presenter() { |
| 66 return app_list_presenter_.get(); | 71 return app_list_presenter_.get(); |
| 67 } | 72 } |
| 68 | 73 |
| 69 void SetMediaCaptureState(MediaCaptureState state); | 74 void SetMediaCaptureState(MediaCaptureState state); |
| 70 void SetForceMaximizeOnFirstRun(bool maximize) { | 75 void SetForceMaximizeOnFirstRun(bool maximize) { |
| 71 force_maximize_on_first_run_ = maximize; | 76 force_maximize_on_first_run_ = maximize; |
| 72 } | 77 } |
| 73 | 78 |
| 74 private: | 79 private: |
| 75 int num_exit_requests_; | 80 int num_exit_requests_; |
| 76 bool multi_profiles_enabled_; | 81 bool multi_profiles_enabled_; |
| 77 bool force_maximize_on_first_run_; | 82 bool force_maximize_on_first_run_; |
| 83 bool touchscreen_enabled_in_local_pref_; |
| 78 | 84 |
| 79 std::unique_ptr<app_list::AppListPresenterDelegateFactory> | 85 std::unique_ptr<app_list::AppListPresenterDelegateFactory> |
| 80 app_list_presenter_delegate_factory_; | 86 app_list_presenter_delegate_factory_; |
| 81 std::unique_ptr<app_list::AppListPresenterImpl> app_list_presenter_; | 87 std::unique_ptr<app_list::AppListPresenterImpl> app_list_presenter_; |
| 82 | 88 |
| 83 DISALLOW_COPY_AND_ASSIGN(TestShellDelegate); | 89 DISALLOW_COPY_AND_ASSIGN(TestShellDelegate); |
| 84 }; | 90 }; |
| 85 | 91 |
| 86 } // namespace test | 92 } // namespace test |
| 87 } // namespace ash | 93 } // namespace ash |
| 88 | 94 |
| 89 #endif // ASH_TEST_TEST_SHELL_DELEGATE_H_ | 95 #endif // ASH_TEST_TEST_SHELL_DELEGATE_H_ |
| OLD | NEW |