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

Unified Diff: Source/core/html/HTMLMediaElement.h

Issue 178003008: Remove the HTMLVideoElement-specific prefixed fullscreen API (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rm negative test Created 6 years, 10 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
« no previous file with comments | « Source/core/frame/UseCounter.cpp ('k') | Source/core/html/HTMLMediaElement.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/HTMLMediaElement.h
diff --git a/Source/core/html/HTMLMediaElement.h b/Source/core/html/HTMLMediaElement.h
index 8508fc2d52de60904aa3943c0ad6c87c40492652..4f17e1eb00dd18419b047734271fd9e4f525e725 100644
--- a/Source/core/html/HTMLMediaElement.h
+++ b/Source/core/html/HTMLMediaElement.h
@@ -250,7 +250,6 @@ public:
bool isFullscreen() const;
virtual void enterFullscreen() OVERRIDE FINAL;
- void exitFullscreen();
virtual bool hasClosedCaptions() const OVERRIDE FINAL;
virtual bool closedCaptionsVisible() const OVERRIDE FINAL;
@@ -303,12 +302,10 @@ protected:
enum BehaviorRestrictionFlags {
NoRestrictions = 0,
RequireUserGestureForPlayRestriction = 1 << 0,
- RequireUserGestureForFullscreenRestriction = 1 << 1,
};
typedef unsigned BehaviorRestrictions;
bool userGestureRequiredForPlay() const { return m_restrictions & RequireUserGestureForPlayRestriction; }
- bool userGestureRequiredForFullscreen() const { return m_restrictions & RequireUserGestureForFullscreenRestriction; }
void addBehaviorRestriction(BehaviorRestrictions restriction) { m_restrictions |= restriction; }
void removeBehaviorRestriction(BehaviorRestrictions restriction) { m_restrictions &= ~restriction; }
« no previous file with comments | « Source/core/frame/UseCounter.cpp ('k') | Source/core/html/HTMLMediaElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698