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

Unified Diff: third_party/WebKit/Source/core/html/media/MediaControls.h

Issue 2802133002: Move MediaControlsWindowEventListener to modules/media_controls/. (Closed)
Patch Set: rebase after blink rename Created 3 years, 8 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/core/html/media/MediaControls.h
diff --git a/third_party/WebKit/Source/core/html/media/MediaControls.h b/third_party/WebKit/Source/core/html/media/MediaControls.h
index b69d7c3bf4250195654f178b118a9f133b97638b..92df9f2055e60564b27eff0524ae79e6d5d15935 100644
--- a/third_party/WebKit/Source/core/html/media/MediaControls.h
+++ b/third_party/WebKit/Source/core/html/media/MediaControls.h
@@ -14,10 +14,7 @@ namespace blink {
class Document;
class HTMLMediaElement;
class LayoutObject;
-class MediaControlCastButtonElement;
class MediaControlPanelElement;
-class MediaControlTimelineElement;
-class MediaControlVolumeSliderElement;
class ShadowRoot;
// MediaControls is an interface to abstract the HTMLMediaElement controls. The
@@ -76,9 +73,6 @@ class CORE_EXPORT MediaControls : public GarbageCollectedMixin {
// implementation and could be removed when the full implementation has moved
// to modules.
virtual MediaControlPanelElement* PanelElement() = 0;
- virtual MediaControlTimelineElement* TimelineElement() = 0;
- virtual MediaControlCastButtonElement* CastButtonElement() = 0;
- virtual MediaControlVolumeSliderElement* VolumeSliderElement() = 0;
virtual Document& OwnerDocument() = 0;
virtual void OnVolumeChange() = 0;
virtual void OnFocusIn() = 0;
@@ -98,7 +92,7 @@ class CORE_EXPORT MediaControls : public GarbageCollectedMixin {
virtual void EndScrubbing() = 0;
virtual void UpdateCurrentTimeDisplay() = 0;
virtual void ToggleTextTrackList() = 0;
- virtual void ShowTextTrackAtIndex(unsigned index_to_enable) = 0;
+ virtual void ShowTextTrackAtIndex(unsigned) = 0;
virtual void DisableShowingTextTracks() = 0;
virtual void EnterFullscreen() = 0;
virtual void ExitFullscreen() = 0;

Powered by Google App Engine
This is Rietveld 408576698