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

Unified Diff: Source/modules/mediasource/MediaSource.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/paint/MediaControlsPainter.cpp ('k') | Source/modules/mediasource/MediaSource.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/mediasource/MediaSource.h
diff --git a/Source/modules/mediasource/MediaSource.h b/Source/modules/mediasource/MediaSource.h
index 2cc308369506f37e8a4bc97f6bc4c574005bf272..b23a7bc625dfc4d3d2b45ed90fe789ba8c9c4027 100644
--- a/Source/modules/mediasource/MediaSource.h
+++ b/Source/modules/mediasource/MediaSource.h
@@ -79,8 +79,8 @@ public:
void close() override;
bool isClosed() const override;
double duration() const override;
- PassRefPtrWillBeRawPtr<TimeRanges> buffered() const override;
- PassRefPtrWillBeRawPtr<TimeRanges> seekable() const override;
+ TimeRanges* buffered() const override;
+ TimeRanges* seekable() const override;
#if !ENABLE(OILPAN)
void refHTMLMediaSource() override { ref(); }
void derefHTMLMediaSource() override { deref(); }
« no previous file with comments | « Source/core/paint/MediaControlsPainter.cpp ('k') | Source/modules/mediasource/MediaSource.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698