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

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

Issue 11175077: Fix the low battery notification string from mins -> minutes. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 2 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/caps_lock_delegate_stub.h" 7 #include "ash/caps_lock_delegate_stub.h"
8 #include "ash/shell/example_factory.h" 8 #include "ash/shell/example_factory.h"
9 #include "ash/shell/launcher_delegate_impl.h" 9 #include "ash/shell/launcher_delegate_impl.h"
10 #include "ash/shell/context_menu.h" 10 #include "ash/shell/context_menu.h"
(...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after
152 152
153 void ShellDelegateImpl::HandleMediaNextTrack() { 153 void ShellDelegateImpl::HandleMediaNextTrack() {
154 } 154 }
155 155
156 void ShellDelegateImpl::HandleMediaPlayPause() { 156 void ShellDelegateImpl::HandleMediaPlayPause() {
157 } 157 }
158 158
159 void ShellDelegateImpl::HandleMediaPrevTrack() { 159 void ShellDelegateImpl::HandleMediaPrevTrack() {
160 } 160 }
161 161
162 string16 ShellDelegateImpl::GetTimeRemainingString(base::TimeDelta delta) {
163 return string16();
164 }
165
166 void ShellDelegateImpl::SaveScreenMagnifierScale(double scale) { 162 void ShellDelegateImpl::SaveScreenMagnifierScale(double scale) {
167 } 163 }
168 164
169 double ShellDelegateImpl::GetSavedScreenMagnifierScale() { 165 double ShellDelegateImpl::GetSavedScreenMagnifierScale() {
170 return std::numeric_limits<double>::min(); 166 return std::numeric_limits<double>::min();
171 } 167 }
172 168
173 ui::MenuModel* ShellDelegateImpl::CreateContextMenu(aura::RootWindow* root) { 169 ui::MenuModel* ShellDelegateImpl::CreateContextMenu(aura::RootWindow* root) {
174 return new ContextMenu(root); 170 return new ContextMenu(root);
175 } 171 }
176 172
177 } // namespace shell 173 } // namespace shell
178 } // namespace ash 174 } // namespace ash
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698