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

Side by Side Diff: chrome/browser/ui/ash/system_tray_delegate_win.cc

Issue 107103004: Implement the spring charger replacement UI. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Point iFrame to production site. Created 7 years 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 "chrome/browser/ui/ash/system_tray_delegate_win.h" 5 #include "chrome/browser/ui/ash/system_tray_delegate_win.h"
6 6
7 #include <string> 7 #include <string>
8 8
9 #include "ash/shell.h" 9 #include "ash/shell.h"
10 #include "ash/shell_delegate.h" 10 #include "ash/shell_delegate.h"
(...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after
147 147
148 virtual void ShowLocallyManagedUserInfo() OVERRIDE { 148 virtual void ShowLocallyManagedUserInfo() OVERRIDE {
149 } 149 }
150 150
151 virtual void ShowEnterpriseInfo() OVERRIDE { 151 virtual void ShowEnterpriseInfo() OVERRIDE {
152 } 152 }
153 153
154 virtual void ShowUserLogin() OVERRIDE { 154 virtual void ShowUserLogin() OVERRIDE {
155 } 155 }
156 156
157 virtual void ShowSpringChargerReplacementDialog() OVERRIDE {
158 }
159
160 virtual bool HasUserConfirmedSafeSpringCharger() OVERRIDE {
161 return false;
162 }
163
157 virtual void ShutDown() OVERRIDE { 164 virtual void ShutDown() OVERRIDE {
158 } 165 }
159 166
160 virtual void SignOut() OVERRIDE { 167 virtual void SignOut() OVERRIDE {
161 } 168 }
162 169
163 virtual void RequestLockScreen() OVERRIDE { 170 virtual void RequestLockScreen() OVERRIDE {
164 } 171 }
165 172
166 virtual void RequestRestartForUpdate() OVERRIDE { 173 virtual void RequestRestartForUpdate() OVERRIDE {
(...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after
311 318
312 DISALLOW_COPY_AND_ASSIGN(SystemTrayDelegateWin); 319 DISALLOW_COPY_AND_ASSIGN(SystemTrayDelegateWin);
313 }; 320 };
314 321
315 } // namespace 322 } // namespace
316 323
317 324
318 ash::SystemTrayDelegate* CreateWindowsSystemTrayDelegate() { 325 ash::SystemTrayDelegate* CreateWindowsSystemTrayDelegate() {
319 return new SystemTrayDelegateWin(); 326 return new SystemTrayDelegateWin();
320 } 327 }
OLDNEW
« no previous file with comments | « chrome/browser/resources/chromeos/charger_replacement.js ('k') | chrome/browser/ui/webui/chrome_web_ui_controller_factory.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698