| Index: third_party/WebKit/Source/core/html/HTMLVideoElement.cpp
|
| diff --git a/third_party/WebKit/Source/core/html/HTMLVideoElement.cpp b/third_party/WebKit/Source/core/html/HTMLVideoElement.cpp
|
| index 1bef144d1c13cec73f9abf79bc0fce29a37ef277..12897b97dfd8861593688b900614964d4ce32ae3 100644
|
| --- a/third_party/WebKit/Source/core/html/HTMLVideoElement.cpp
|
| +++ b/third_party/WebKit/Source/core/html/HTMLVideoElement.cpp
|
| @@ -54,9 +54,10 @@ using namespace HTMLNames;
|
|
|
| inline HTMLVideoElement::HTMLVideoElement(Document& document)
|
| : HTMLMediaElement(videoTag, document) {
|
| - if (document.settings())
|
| + if (document.settings()) {
|
| m_defaultPosterURL =
|
| - AtomicString(document.settings()->defaultVideoPosterURL());
|
| + AtomicString(document.settings()->getDefaultVideoPosterURL());
|
| + }
|
| }
|
|
|
| HTMLVideoElement* HTMLVideoElement::create(Document& document) {
|
|
|