Chromium Code Reviews| Index: Source/core/html/HTMLMediaElement.h |
| diff --git a/Source/core/html/HTMLMediaElement.h b/Source/core/html/HTMLMediaElement.h |
| index b797b4c26fbef2ac93ea248ba2f361756884ab8f..4c38e567ac1c79f258829b4636185aa1b473bfd0 100644 |
| --- a/Source/core/html/HTMLMediaElement.h |
| +++ b/Source/core/html/HTMLMediaElement.h |
| @@ -250,7 +250,7 @@ public: |
| // of one of them here. |
| using HTMLElement::executionContext; |
| - bool hasSingleSecurityOrigin() const { return !m_player || m_player->hasSingleSecurityOrigin(); } |
| + bool hasSingleSecurityOrigin() const { return webMediaPlayer() && webMediaPlayer()->hasSingleSecurityOrigin(); } |
|
acolwell GONE FROM CHROMIUM
2014/07/08 00:26:33
Isn't this a behavior change? Shouldn't this be !m
Srirama
2014/07/08 05:06:52
Done.
|
| bool isFullscreen() const; |
| void enterFullscreen(); |