| 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_SHELL_SHELL_DELEGATE_IMPL_H_ | 5 #ifndef ASH_SHELL_SHELL_DELEGATE_IMPL_H_ |
| 6 #define ASH_SHELL_SHELL_DELEGATE_IMPL_H_ | 6 #define ASH_SHELL_SHELL_DELEGATE_IMPL_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "ash/shell_delegate.h" | 10 #include "ash/shell_delegate.h" |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 public: | 24 public: |
| 25 ShellDelegateImpl(); | 25 ShellDelegateImpl(); |
| 26 virtual ~ShellDelegateImpl(); | 26 virtual ~ShellDelegateImpl(); |
| 27 | 27 |
| 28 void SetWatcher(WindowWatcher* watcher); | 28 void SetWatcher(WindowWatcher* watcher); |
| 29 | 29 |
| 30 virtual bool IsUserLoggedIn() const OVERRIDE; | 30 virtual bool IsUserLoggedIn() const OVERRIDE; |
| 31 virtual bool IsSessionStarted() const OVERRIDE; | 31 virtual bool IsSessionStarted() const OVERRIDE; |
| 32 virtual bool IsGuestSession() const OVERRIDE; | 32 virtual bool IsGuestSession() const OVERRIDE; |
| 33 virtual bool IsFirstRunAfterBoot() const OVERRIDE; | 33 virtual bool IsFirstRunAfterBoot() const OVERRIDE; |
| 34 virtual bool IsMultiProfilesEnabled() const OVERRIDE; |
| 34 virtual bool IsRunningInForcedAppMode() const OVERRIDE; | 35 virtual bool IsRunningInForcedAppMode() const OVERRIDE; |
| 35 virtual bool CanLockScreen() const OVERRIDE; | 36 virtual bool CanLockScreen() const OVERRIDE; |
| 36 virtual void LockScreen() OVERRIDE; | 37 virtual void LockScreen() OVERRIDE; |
| 37 virtual void UnlockScreen() OVERRIDE; | 38 virtual void UnlockScreen() OVERRIDE; |
| 38 virtual bool IsScreenLocked() const OVERRIDE; | 39 virtual bool IsScreenLocked() const OVERRIDE; |
| 39 virtual void PreInit() OVERRIDE; | 40 virtual void PreInit() OVERRIDE; |
| 40 virtual void Shutdown() OVERRIDE; | 41 virtual void Shutdown() OVERRIDE; |
| 41 virtual void Exit() OVERRIDE; | 42 virtual void Exit() OVERRIDE; |
| 42 virtual void NewTab() OVERRIDE; | 43 virtual void NewTab() OVERRIDE; |
| 43 virtual void NewWindow(bool incognito) OVERRIDE; | 44 virtual void NewWindow(bool incognito) OVERRIDE; |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 96 bool screen_magnifier_enabled_; | 97 bool screen_magnifier_enabled_; |
| 97 MagnifierType screen_magnifier_type_; | 98 MagnifierType screen_magnifier_type_; |
| 98 | 99 |
| 99 DISALLOW_COPY_AND_ASSIGN(ShellDelegateImpl); | 100 DISALLOW_COPY_AND_ASSIGN(ShellDelegateImpl); |
| 100 }; | 101 }; |
| 101 | 102 |
| 102 } // namespace shell | 103 } // namespace shell |
| 103 } // namespace ash | 104 } // namespace ash |
| 104 | 105 |
| 105 #endif // ASH_SHELL_SHELL_DELEGATE_IMPL_H_ | 106 #endif // ASH_SHELL_SHELL_DELEGATE_IMPL_H_ |
| OLD | NEW |