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 #include "ash/shell/shell_delegate_impl.h" | 5 #include "ash/shell/shell_delegate_impl.h" |
6 | 6 |
7 #include "ash/accessibility_delegate.h" | 7 #include "ash/accessibility_delegate.h" |
8 #include "ash/default_accessibility_delegate.h" | 8 #include "ash/default_accessibility_delegate.h" |
9 #include "ash/default_user_wallpaper_delegate.h" | 9 #include "ash/default_user_wallpaper_delegate.h" |
10 #include "ash/gpu_support_stub.h" | 10 #include "ash/gpu_support_stub.h" |
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
91 } | 91 } |
92 | 92 |
93 bool ShellDelegateImpl::IsMultiProfilesEnabled() const { | 93 bool ShellDelegateImpl::IsMultiProfilesEnabled() const { |
94 return false; | 94 return false; |
95 } | 95 } |
96 | 96 |
97 bool ShellDelegateImpl::IsRunningInForcedAppMode() const { | 97 bool ShellDelegateImpl::IsRunningInForcedAppMode() const { |
98 return false; | 98 return false; |
99 } | 99 } |
100 | 100 |
| 101 bool ShellDelegateImpl::IsMultiAccountEnabled() const { |
| 102 return false; |
| 103 } |
| 104 |
101 void ShellDelegateImpl::PreInit() { | 105 void ShellDelegateImpl::PreInit() { |
102 } | 106 } |
103 | 107 |
104 void ShellDelegateImpl::PreShutdown() { | 108 void ShellDelegateImpl::PreShutdown() { |
105 } | 109 } |
106 | 110 |
107 void ShellDelegateImpl::Exit() { | 111 void ShellDelegateImpl::Exit() { |
108 base::MessageLoopForUI::current()->Quit(); | 112 base::MessageLoopForUI::current()->Quit(); |
109 } | 113 } |
110 | 114 |
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
176 // Real GPU support depends on src/content, so just use a stub. | 180 // Real GPU support depends on src/content, so just use a stub. |
177 return new GPUSupportStub; | 181 return new GPUSupportStub; |
178 } | 182 } |
179 | 183 |
180 base::string16 ShellDelegateImpl::GetProductName() const { | 184 base::string16 ShellDelegateImpl::GetProductName() const { |
181 return base::string16(); | 185 return base::string16(); |
182 } | 186 } |
183 | 187 |
184 } // namespace shell | 188 } // namespace shell |
185 } // namespace ash | 189 } // namespace ash |
OLD | NEW |