| Index: third_party/WebKit/Source/core/html/HTMLVideoElement.h
|
| diff --git a/third_party/WebKit/Source/core/html/HTMLVideoElement.h b/third_party/WebKit/Source/core/html/HTMLVideoElement.h
|
| index 64e664d313417528afc9311a8c2fcb79d1819bf2..f88b02343bff10e7fc1b1448005072d5b58b4478 100644
|
| --- a/third_party/WebKit/Source/core/html/HTMLVideoElement.h
|
| +++ b/third_party/WebKit/Source/core/html/HTMLVideoElement.h
|
| @@ -55,7 +55,7 @@ typedef int GC3Dint;
|
| class CORE_EXPORT HTMLVideoElement final : public HTMLMediaElement, public CanvasImageSource, public ImageBitmapSource {
|
| DEFINE_WRAPPERTYPEINFO();
|
| public:
|
| - static PassRefPtrWillBeRawPtr<HTMLVideoElement> create(Document&);
|
| + static RawPtr<HTMLVideoElement> create(Document&);
|
| DECLARE_VIRTUAL_TRACE();
|
|
|
| unsigned videoWidth() const;
|
| @@ -114,7 +114,7 @@ private:
|
| void didMoveToNewDocument(Document& oldDocument) override;
|
| void setDisplayMode(DisplayMode) override;
|
|
|
| - OwnPtrWillBeMember<HTMLImageLoader> m_imageLoader;
|
| + Member<HTMLImageLoader> m_imageLoader;
|
|
|
| AtomicString m_defaultPosterURL;
|
| };
|
|
|