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

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

Issue 1306613002: Keep auxilliary media objects on the heap always. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 4 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
« no previous file with comments | « Source/core/html/HTMLMediaElement.cpp ('k') | Source/core/html/MediaController.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/HTMLMediaSource.h
diff --git a/Source/core/html/HTMLMediaSource.h b/Source/core/html/HTMLMediaSource.h
index 37ba9fd3dcdd48572baca04fb963b5d3761dedf9..826b86fd8793f15acc7f7dccd64f9e1af4ea68b0 100644
--- a/Source/core/html/HTMLMediaSource.h
+++ b/Source/core/html/HTMLMediaSource.h
@@ -64,8 +64,8 @@ public:
virtual void close() = 0;
virtual bool isClosed() const = 0;
virtual double duration() const = 0;
- virtual PassRefPtrWillBeRawPtr<TimeRanges> buffered() const = 0;
- virtual PassRefPtrWillBeRawPtr<TimeRanges> seekable() const = 0;
+ virtual TimeRanges* buffered() const = 0;
+ virtual TimeRanges* seekable() const = 0;
#if !ENABLE(OILPAN)
virtual void refHTMLMediaSource() = 0;
virtual void derefHTMLMediaSource() = 0;
« no previous file with comments | « Source/core/html/HTMLMediaElement.cpp ('k') | Source/core/html/MediaController.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698