Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(458)

Unified Diff: Source/core/html/HTMLVideoElement.h

Issue 320253002: Oilpan: Prepare to move ImageLoader and its subclasses to Oilpan heap. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebase Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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;
};

Powered by Google App Engine
This is Rietveld 408576698