Index: Source/core/html/HTMLVideoElement.cpp |
diff --git a/Source/core/html/HTMLVideoElement.cpp b/Source/core/html/HTMLVideoElement.cpp |
index 97969a63fc08f2ea967ca80993b9f5a58327bfec..e9f2b9001d473f7f8ab8b8210476f0f64dceabe1 100644 |
--- a/Source/core/html/HTMLVideoElement.cpp |
+++ b/Source/core/html/HTMLVideoElement.cpp |
@@ -227,7 +227,7 @@ bool HTMLVideoElement::hasAvailableVideoFrame() const |
if (!webMediaPlayer()) |
return false; |
- return webMediaPlayer()->hasVideo() && webMediaPlayer()->readyState() >= blink::WebMediaPlayer::ReadyStateHaveCurrentData; |
+ return webMediaPlayer()->hasVideo() && webMediaPlayer()->readyState() >= WebMediaPlayer::ReadyStateHaveCurrentData; |
} |
void HTMLVideoElement::webkitEnterFullscreen(ExceptionState& exceptionState) |
@@ -325,4 +325,4 @@ FloatSize HTMLVideoElement::elementSize() const |
return FloatSize(videoWidth(), videoHeight()); |
} |
-} |
+} // namespace blink |