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

Side by Side Diff: third_party/WebKit/Source/core/html/HTMLMediaElement.h

Issue 2464163004: [RemotePlayback] Implement 'connecting' state (Closed)
Patch Set: Rebased Created 4 years, 1 month 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2007, 2008, 2009, 2010, 2011, 2012, 2013 Apple Inc. All rights 2 * Copyright (C) 2007, 2008, 2009, 2010, 2011, 2012, 2013 Apple Inc. All rights
3 * reserved. 3 * reserved.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions 6 * modification, are permitted provided that the following conditions
7 * are met: 7 * are met:
8 * 1. Redistributions of source code must retain the above copyright 8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright 10 * 2. Redistributions in binary form must reproduce the above copyright
(...skipping 373 matching lines...) Expand 10 before | Expand all | Expand 10 after
384 bool) final; 384 bool) final;
385 void removeVideoTrack(WebMediaPlayer::TrackId) final; 385 void removeVideoTrack(WebMediaPlayer::TrackId) final;
386 void addTextTrack(WebInbandTextTrack*) final; 386 void addTextTrack(WebInbandTextTrack*) final;
387 void removeTextTrack(WebInbandTextTrack*) final; 387 void removeTextTrack(WebInbandTextTrack*) final;
388 void mediaSourceOpened(WebMediaSource*) final; 388 void mediaSourceOpened(WebMediaSource*) final;
389 void requestSeek(double) final; 389 void requestSeek(double) final;
390 void remoteRouteAvailabilityChanged(bool) final; 390 void remoteRouteAvailabilityChanged(bool) final;
391 void connectedToRemoteDevice() final; 391 void connectedToRemoteDevice() final;
392 void disconnectedFromRemoteDevice() final; 392 void disconnectedFromRemoteDevice() final;
393 void cancelledRemotePlaybackRequest() final; 393 void cancelledRemotePlaybackRequest() final;
394 void remotePlaybackStarted() final;
394 bool isAutoplayingMuted() final; 395 bool isAutoplayingMuted() final;
395 void requestReload(const WebURL&) final; 396 void requestReload(const WebURL&) final;
396 397
397 void loadTimerFired(TimerBase*); 398 void loadTimerFired(TimerBase*);
398 void progressEventTimerFired(TimerBase*); 399 void progressEventTimerFired(TimerBase*);
399 void playbackProgressTimerFired(TimerBase*); 400 void playbackProgressTimerFired(TimerBase*);
400 void startPlaybackProgressTimer(); 401 void startPlaybackProgressTimer();
401 void startProgressEventTimer(); 402 void startProgressEventTimer();
402 void stopPeriodicTimers(); 403 void stopPeriodicTimers();
403 404
(...skipping 331 matching lines...) Expand 10 before | Expand all | Expand 10 after
735 736
736 inline bool isHTMLMediaElement(const HTMLElement& element) { 737 inline bool isHTMLMediaElement(const HTMLElement& element) {
737 return isHTMLAudioElement(element) || isHTMLVideoElement(element); 738 return isHTMLAudioElement(element) || isHTMLVideoElement(element);
738 } 739 }
739 740
740 DEFINE_HTMLELEMENT_TYPE_CASTS_WITH_FUNCTION(HTMLMediaElement); 741 DEFINE_HTMLELEMENT_TYPE_CASTS_WITH_FUNCTION(HTMLMediaElement);
741 742
742 } // namespace blink 743 } // namespace blink
743 744
744 #endif // HTMLMediaElement_h 745 #endif // HTMLMediaElement_h
OLDNEW
« no previous file with comments | « media/blink/webmediaplayer_impl_unittest.cc ('k') | third_party/WebKit/Source/core/html/HTMLMediaElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698