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

Side by Side Diff: ash/shell/shell_delegate_impl.cc

Issue 210903003: Implemented system tray UI for new account management. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: More comments addressed. Created 6 years, 8 months 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 #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
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::IsAccountManagementEnabled() const {
102 return false;
103 }
104
101 void ShellDelegateImpl::PreInit() { 105 void ShellDelegateImpl::PreInit() {
102 } 106 }
103 107
104 void ShellDelegateImpl::Shutdown() { 108 void ShellDelegateImpl::Shutdown() {
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 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
165 // Real GPU support depends on src/content, so just use a stub. 169 // Real GPU support depends on src/content, so just use a stub.
166 return new GPUSupportStub; 170 return new GPUSupportStub;
167 } 171 }
168 172
169 base::string16 ShellDelegateImpl::GetProductName() const { 173 base::string16 ShellDelegateImpl::GetProductName() const {
170 return base::string16(); 174 return base::string16();
171 } 175 }
172 176
173 } // namespace shell 177 } // namespace shell
174 } // namespace ash 178 } // namespace ash
OLDNEW
« no previous file with comments | « ash/shell/shell_delegate_impl.h ('k') | ash/shell_delegate.h » ('j') | ash/shell_delegate.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698