| 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/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 Loading... |
| 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 |
| OLD | NEW |