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

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

Issue 42353002: Introduce WindowStateDelegate::ToggleFullscreen (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 1 month 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 26 matching lines...) Expand all
37 37
38 // ash::ShellDelegate overrides; 38 // ash::ShellDelegate overrides;
39 virtual bool IsFirstRunAfterBoot() const OVERRIDE; 39 virtual bool IsFirstRunAfterBoot() const OVERRIDE;
40 virtual bool IsMultiProfilesEnabled() const OVERRIDE; 40 virtual bool IsMultiProfilesEnabled() const OVERRIDE;
41 virtual bool IsRunningInForcedAppMode() const OVERRIDE; 41 virtual bool IsRunningInForcedAppMode() const OVERRIDE;
42 virtual void PreInit() OVERRIDE; 42 virtual void PreInit() OVERRIDE;
43 virtual void Shutdown() OVERRIDE; 43 virtual void Shutdown() OVERRIDE;
44 virtual void Exit() OVERRIDE; 44 virtual void Exit() OVERRIDE;
45 virtual void NewTab() OVERRIDE; 45 virtual void NewTab() OVERRIDE;
46 virtual void NewWindow(bool is_incognito) OVERRIDE; 46 virtual void NewWindow(bool is_incognito) OVERRIDE;
47 virtual void ToggleFullscreen() OVERRIDE;
48 virtual void OpenFileManager() OVERRIDE; 47 virtual void OpenFileManager() OVERRIDE;
49 virtual void OpenCrosh() OVERRIDE; 48 virtual void OpenCrosh() OVERRIDE;
50 virtual void RestoreTab() OVERRIDE; 49 virtual void RestoreTab() OVERRIDE;
51 virtual void ShowKeyboardOverlay() OVERRIDE; 50 virtual void ShowKeyboardOverlay() OVERRIDE;
52 virtual keyboard::KeyboardControllerProxy* 51 virtual keyboard::KeyboardControllerProxy*
53 CreateKeyboardControllerProxy() OVERRIDE; 52 CreateKeyboardControllerProxy() OVERRIDE;
54 virtual void ShowTaskManager() OVERRIDE; 53 virtual void ShowTaskManager() OVERRIDE;
55 virtual content::BrowserContext* GetCurrentBrowserContext() OVERRIDE; 54 virtual content::BrowserContext* GetCurrentBrowserContext() OVERRIDE;
56 virtual app_list::AppListViewDelegate* CreateAppListViewDelegate() OVERRIDE; 55 virtual app_list::AppListViewDelegate* CreateAppListViewDelegate() OVERRIDE;
57 virtual ash::LauncherDelegate* CreateLauncherDelegate( 56 virtual ash::LauncherDelegate* CreateLauncherDelegate(
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
95 content::NotificationRegistrar registrar_; 94 content::NotificationRegistrar registrar_;
96 95
97 ChromeLauncherController* launcher_delegate_; 96 ChromeLauncherController* launcher_delegate_;
98 97
99 scoped_ptr<TabRestoreHelper> tab_restore_helper_; 98 scoped_ptr<TabRestoreHelper> tab_restore_helper_;
100 99
101 DISALLOW_COPY_AND_ASSIGN(ChromeShellDelegate); 100 DISALLOW_COPY_AND_ASSIGN(ChromeShellDelegate);
102 }; 101 };
103 102
104 #endif // CHROME_BROWSER_UI_ASH_CHROME_SHELL_DELEGATE_H_ 103 #endif // CHROME_BROWSER_UI_ASH_CHROME_SHELL_DELEGATE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698