| Index: Source/core/html/HTMLVideoElement.h
|
| diff --git a/Source/core/html/HTMLVideoElement.h b/Source/core/html/HTMLVideoElement.h
|
| index fff3be3856bdd7bc5db787980248fdb9416cb0e0..fa8f5fe198431594bff93c9213b5bf1ddf776db0 100644
|
| --- a/Source/core/html/HTMLVideoElement.h
|
| +++ b/Source/core/html/HTMLVideoElement.h
|
| @@ -41,6 +41,7 @@ class HTMLImageLoader;
|
| class HTMLVideoElement FINAL : public HTMLMediaElement, public CanvasImageSource {
|
| public:
|
| static PassRefPtrWillBeRawPtr<HTMLVideoElement> create(Document&);
|
| + virtual void trace(Visitor*) OVERRIDE;
|
|
|
| unsigned videoWidth() const;
|
| unsigned videoHeight() const;
|
| @@ -95,7 +96,7 @@ private:
|
| virtual void didMoveToNewDocument(Document& oldDocument) OVERRIDE;
|
| virtual void setDisplayMode(DisplayMode) OVERRIDE;
|
|
|
| - OwnPtr<HTMLImageLoader> m_imageLoader;
|
| + OwnPtrWillBeMember<HTMLImageLoader> m_imageLoader;
|
|
|
| AtomicString m_defaultPosterURL;
|
| };
|
|
|