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

Side by Side Diff: Source/web/WebMediaPlayerClientImpl.cpp

Issue 1157253010: Remove WebMediaPlayerClient::requestFullscreen() (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: rebase Created 5 years, 6 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
« no previous file with comments | « Source/web/WebMediaPlayerClientImpl.h ('k') | public/platform/WebMediaPlayerClient.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2009 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 "config.h" 5 #include "config.h"
6 #include "web/WebMediaPlayerClientImpl.h" 6 #include "web/WebMediaPlayerClientImpl.h"
7 7
8 #include "core/frame/LocalFrame.h" 8 #include "core/frame/LocalFrame.h"
9 #include "core/html/HTMLMediaElement.h" 9 #include "core/html/HTMLMediaElement.h"
10 #include "core/html/TimeRanges.h" 10 #include "core/html/TimeRanges.h"
(...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after
160 { 160 {
161 m_client->mediaPlayerDidRemoveTextTrack(textTrack); 161 m_client->mediaPlayerDidRemoveTextTrack(textTrack);
162 } 162 }
163 163
164 void WebMediaPlayerClientImpl::mediaSourceOpened(WebMediaSource* webMediaSource) 164 void WebMediaPlayerClientImpl::mediaSourceOpened(WebMediaSource* webMediaSource)
165 { 165 {
166 ASSERT(webMediaSource); 166 ASSERT(webMediaSource);
167 m_client->mediaPlayerMediaSourceOpened(webMediaSource); 167 m_client->mediaPlayerMediaSourceOpened(webMediaSource);
168 } 168 }
169 169
170 void WebMediaPlayerClientImpl::requestFullscreen()
171 {
172 m_client->mediaPlayerRequestFullscreen();
173 }
174
175 void WebMediaPlayerClientImpl::requestSeek(double time) 170 void WebMediaPlayerClientImpl::requestSeek(double time)
176 { 171 {
177 m_client->mediaPlayerRequestSeek(time); 172 m_client->mediaPlayerRequestSeek(time);
178 } 173 }
179 174
180 void WebMediaPlayerClientImpl::remoteRouteAvailabilityChanged(bool routesAvailab le) 175 void WebMediaPlayerClientImpl::remoteRouteAvailabilityChanged(bool routesAvailab le)
181 { 176 {
182 mediaElement().remoteRouteAvailabilityChanged(routesAvailable); 177 mediaElement().remoteRouteAvailabilityChanged(routesAvailable);
183 } 178 }
184 179
(...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after
307 } 302 }
308 303
309 DEFINE_TRACE(WebMediaPlayerClientImpl::AudioClientImpl) 304 DEFINE_TRACE(WebMediaPlayerClientImpl::AudioClientImpl)
310 { 305 {
311 visitor->trace(m_client); 306 visitor->trace(m_client);
312 } 307 }
313 308
314 #endif 309 #endif
315 310
316 } // namespace blink 311 } // namespace blink
OLDNEW
« no previous file with comments | « Source/web/WebMediaPlayerClientImpl.h ('k') | public/platform/WebMediaPlayerClient.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698