| 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 "webkit/media/android/webmediaplayer_in_process_android.h" | 5 #include "webkit/media/android/webmediaplayer_in_process_android.h" |
| 6 | 6 |
| 7 #include "base/bind.h" | 7 #include "base/bind.h" |
| 8 #include "base/logging.h" | 8 #include "base/logging.h" |
| 9 #include "base/utf_string_conversions.h" | 9 #include "base/utf_string_conversions.h" |
| 10 #include "media/base/android/media_player_bridge.h" | 10 #include "media/base/android/media_player_bridge.h" |
| (...skipping 168 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 179 // still call play() and seek(). | 179 // still call play() and seek(). |
| 180 UpdateReadyState(WebMediaPlayer::ReadyStateHaveMetadata); | 180 UpdateReadyState(WebMediaPlayer::ReadyStateHaveMetadata); |
| 181 UpdateReadyState(WebMediaPlayer::ReadyStateHaveEnoughData); | 181 UpdateReadyState(WebMediaPlayer::ReadyStateHaveEnoughData); |
| 182 } | 182 } |
| 183 | 183 |
| 184 void WebMediaPlayerInProcessAndroid::OnTimeUpdate( | 184 void WebMediaPlayerInProcessAndroid::OnTimeUpdate( |
| 185 base::TimeDelta current_time) {} | 185 base::TimeDelta current_time) {} |
| 186 | 186 |
| 187 void WebMediaPlayerInProcessAndroid::Destroy() {} | 187 void WebMediaPlayerInProcessAndroid::Destroy() {} |
| 188 | 188 |
| 189 void WebMediaPlayerInProcessAndroid::RequestExternalSurface() { |
| 190 NOTIMPLEMENTED(); |
| 191 } |
| 192 |
| 189 } // namespace webkit_media | 193 } // namespace webkit_media |
| OLD | NEW |