| 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/toplevel_window.h" | 10 #include "ash/shell/toplevel_window.h" |
| (...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 131 aura::client::UserActionClient* ShellDelegateImpl::CreateUserActionClient() { | 131 aura::client::UserActionClient* ShellDelegateImpl::CreateUserActionClient() { |
| 132 return NULL; | 132 return NULL; |
| 133 } | 133 } |
| 134 | 134 |
| 135 void ShellDelegateImpl::OpenFeedbackPage() { | 135 void ShellDelegateImpl::OpenFeedbackPage() { |
| 136 } | 136 } |
| 137 | 137 |
| 138 void ShellDelegateImpl::RecordUserMetricsAction(UserMetricsAction action) { | 138 void ShellDelegateImpl::RecordUserMetricsAction(UserMetricsAction action) { |
| 139 } | 139 } |
| 140 | 140 |
| 141 void ShellDelegateImpl::RemoveFullScreenExitBubble() { |
| 142 } |
| 143 |
| 141 void ShellDelegateImpl::HandleMediaNextTrack() { | 144 void ShellDelegateImpl::HandleMediaNextTrack() { |
| 142 } | 145 } |
| 143 | 146 |
| 144 void ShellDelegateImpl::HandleMediaPlayPause() { | 147 void ShellDelegateImpl::HandleMediaPlayPause() { |
| 145 } | 148 } |
| 146 | 149 |
| 147 void ShellDelegateImpl::HandleMediaPrevTrack() { | 150 void ShellDelegateImpl::HandleMediaPrevTrack() { |
| 148 } | 151 } |
| 149 | 152 |
| 150 string16 ShellDelegateImpl::GetTimeRemainingString(base::TimeDelta delta) { | 153 string16 ShellDelegateImpl::GetTimeRemainingString(base::TimeDelta delta) { |
| 151 return string16(); | 154 return string16(); |
| 152 } | 155 } |
| 153 | 156 |
| 154 } // namespace shell | 157 } // namespace shell |
| 155 } // namespace ash | 158 } // namespace ash |
| OLD | NEW |