| Index: third_party/WebKit/Source/core/html/HTMLMediaElement.h
|
| diff --git a/third_party/WebKit/Source/core/html/HTMLMediaElement.h b/third_party/WebKit/Source/core/html/HTMLMediaElement.h
|
| index 5f22ef0d8d3ac51e6932f75e7a28498826335270..a388248f7b0af7f36ee046fe4c90a29a5e92079c 100644
|
| --- a/third_party/WebKit/Source/core/html/HTMLMediaElement.h
|
| +++ b/third_party/WebKit/Source/core/html/HTMLMediaElement.h
|
| @@ -203,7 +203,7 @@ public:
|
| // causes an ambiguity error at compile time. This class's constructor
|
| // ensures that both implementations return document, so return the result
|
| // of one of them here.
|
| - using HTMLElement::executionContext;
|
| + using HTMLElement::getExecutionContext;
|
|
|
| bool hasSingleSecurityOrigin() const { return webMediaPlayer() && webMediaPlayer()->hasSingleSecurityOrigin(); }
|
|
|
| @@ -236,7 +236,7 @@ public:
|
| AudioSourceProviderClient* audioSourceNode() { return m_audioSourceNode; }
|
| void setAudioSourceNode(AudioSourceProviderClient*);
|
|
|
| - AudioSourceProvider& audioSourceProvider() { return m_audioSourceProvider; }
|
| + AudioSourceProvider& getAudioSourceProvider() { return m_audioSourceProvider; }
|
|
|
| enum InvalidURLAction { DoNothing, Complain };
|
| bool isSafeToLoadURL(const KURL&, InvalidURLAction);
|
|
|