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

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

Issue 331803005: Oilpan: move MediaKeyError to the heap. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Drop explicit 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
« no previous file with comments | « Source/core/html/MediaKeyError.idl ('k') | Source/core/html/MediaKeyEvent.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/MediaKeyEvent.h
diff --git a/Source/core/html/MediaKeyEvent.h b/Source/core/html/MediaKeyEvent.h
index cf95046f6574dde49fe08425cc7a52efebf086b2..404f043b6594ce985819f5fddb6907c0930b8148 100644
--- a/Source/core/html/MediaKeyEvent.h
+++ b/Source/core/html/MediaKeyEvent.h
@@ -39,7 +39,7 @@ struct MediaKeyEventInit : public EventInit {
RefPtr<Uint8Array> initData;
RefPtr<Uint8Array> message;
String defaultURL;
- RefPtr<MediaKeyError> errorCode;
+ RefPtrWillBeMember<MediaKeyError> errorCode;
unsigned short systemCode;
};
@@ -79,7 +79,7 @@ private:
RefPtr<Uint8Array> m_initData;
RefPtr<Uint8Array> m_message;
String m_defaultURL;
- RefPtr<MediaKeyError> m_errorCode;
+ RefPtrWillBeMember<MediaKeyError> m_errorCode;
unsigned short m_systemCode;
};
« no previous file with comments | « Source/core/html/MediaKeyError.idl ('k') | Source/core/html/MediaKeyEvent.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698