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 <memory> | 8 #include <memory> |
9 #include <string> | 9 #include <string> |
10 | 10 |
(...skipping 30 matching lines...) Expand all Loading... |
41 bool IsForceMaximizeOnFirstRun() const override; | 41 bool IsForceMaximizeOnFirstRun() const override; |
42 void PreInit() override; | 42 void PreInit() override; |
43 void PreShutdown() override; | 43 void PreShutdown() override; |
44 void Exit() override; | 44 void Exit() override; |
45 keyboard::KeyboardUI* CreateKeyboardUI() override; | 45 keyboard::KeyboardUI* CreateKeyboardUI() override; |
46 void VirtualKeyboardActivated(bool activated) override; | 46 void VirtualKeyboardActivated(bool activated) override; |
47 void AddVirtualKeyboardStateObserver( | 47 void AddVirtualKeyboardStateObserver( |
48 ash::VirtualKeyboardStateObserver* observer) override; | 48 ash::VirtualKeyboardStateObserver* observer) override; |
49 void RemoveVirtualKeyboardStateObserver( | 49 void RemoveVirtualKeyboardStateObserver( |
50 ash::VirtualKeyboardStateObserver* observer) override; | 50 ash::VirtualKeyboardStateObserver* observer) override; |
51 void OpenUrl(const GURL& url) override; | 51 void OpenUrlFromArc(const GURL& url) override; |
52 app_list::AppListPresenter* GetAppListPresenter() override; | 52 app_list::AppListPresenter* GetAppListPresenter() override; |
53 ash::ShelfDelegate* CreateShelfDelegate(ash::ShelfModel* model) override; | 53 ash::ShelfDelegate* CreateShelfDelegate(ash::ShelfModel* model) override; |
54 ash::SystemTrayDelegate* CreateSystemTrayDelegate() override; | 54 ash::SystemTrayDelegate* CreateSystemTrayDelegate() override; |
55 ash::UserWallpaperDelegate* CreateUserWallpaperDelegate() override; | 55 ash::UserWallpaperDelegate* CreateUserWallpaperDelegate() override; |
56 ash::SessionStateDelegate* CreateSessionStateDelegate() override; | 56 ash::SessionStateDelegate* CreateSessionStateDelegate() override; |
57 ash::AccessibilityDelegate* CreateAccessibilityDelegate() override; | 57 ash::AccessibilityDelegate* CreateAccessibilityDelegate() override; |
58 ash::NewWindowDelegate* CreateNewWindowDelegate() override; | 58 ash::NewWindowDelegate* CreateNewWindowDelegate() override; |
59 ash::MediaDelegate* CreateMediaDelegate() override; | 59 ash::MediaDelegate* CreateMediaDelegate() override; |
60 std::unique_ptr<ash::PointerWatcherDelegate> CreatePointerWatcherDelegate() | 60 std::unique_ptr<ash::PointerWatcherDelegate> CreatePointerWatcherDelegate() |
61 override; | 61 override; |
(...skipping 24 matching lines...) Expand all Loading... |
86 // Proxies events from chrome/browser to ash::UserMetricsRecorder. | 86 // Proxies events from chrome/browser to ash::UserMetricsRecorder. |
87 std::unique_ptr<ChromeUserMetricsRecorder> chrome_user_metrics_recorder_; | 87 std::unique_ptr<ChromeUserMetricsRecorder> chrome_user_metrics_recorder_; |
88 | 88 |
89 std::unique_ptr<chromeos::DisplayConfigurationObserver> | 89 std::unique_ptr<chromeos::DisplayConfigurationObserver> |
90 display_configuration_observer_; | 90 display_configuration_observer_; |
91 | 91 |
92 DISALLOW_COPY_AND_ASSIGN(ChromeShellDelegate); | 92 DISALLOW_COPY_AND_ASSIGN(ChromeShellDelegate); |
93 }; | 93 }; |
94 | 94 |
95 #endif // CHROME_BROWSER_UI_ASH_CHROME_SHELL_DELEGATE_H_ | 95 #endif // CHROME_BROWSER_UI_ASH_CHROME_SHELL_DELEGATE_H_ |
OLD | NEW |