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

Unified Diff: Source/core/html/MediaController.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/HTMLMediaSource.h ('k') | Source/core/html/MediaController.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/MediaController.h
diff --git a/Source/core/html/MediaController.h b/Source/core/html/MediaController.h
index 4b24af2d1cb005efebd2f1dd5cb089ad32274c9f..6659b5f84e94ea54add5154249e4687b03bef908 100644
--- a/Source/core/html/MediaController.h
+++ b/Source/core/html/MediaController.h
@@ -49,9 +49,9 @@ public:
void addMediaElement(HTMLMediaElement*);
void removeMediaElement(HTMLMediaElement*);
- PassRefPtrWillBeRawPtr<TimeRanges> buffered() const;
- PassRefPtrWillBeRawPtr<TimeRanges> seekable() const;
- PassRefPtrWillBeRawPtr<TimeRanges> played();
+ TimeRanges* buffered() const;
+ TimeRanges* seekable() const;
+ TimeRanges* played();
double duration() const;
double currentTime() const;
« no previous file with comments | « Source/core/html/HTMLMediaSource.h ('k') | Source/core/html/MediaController.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698