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 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
144 void ShellDelegateImpl::HandleMediaPlayPause() { | 144 void ShellDelegateImpl::HandleMediaPlayPause() { |
145 } | 145 } |
146 | 146 |
147 void ShellDelegateImpl::HandleMediaPrevTrack() { | 147 void ShellDelegateImpl::HandleMediaPrevTrack() { |
148 } | 148 } |
149 | 149 |
150 string16 ShellDelegateImpl::GetTimeRemainingString(base::TimeDelta delta) { | 150 string16 ShellDelegateImpl::GetTimeRemainingString(base::TimeDelta delta) { |
151 return string16(); | 151 return string16(); |
152 } | 152 } |
153 | 153 |
| 154 void ShellDelegateImpl::ToggleFullscreenMode() { |
| 155 } |
| 156 |
154 } // namespace shell | 157 } // namespace shell |
155 } // namespace ash | 158 } // namespace ash |
OLD | NEW |