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

Unified Diff: Source/modules/encryptedmedia/HTMLMediaElementEncryptedMedia.cpp

Issue 599093006: Oilpan: fix build after r182644. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 3 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/encryptedmedia/HTMLMediaElementEncryptedMedia.cpp
diff --git a/Source/modules/encryptedmedia/HTMLMediaElementEncryptedMedia.cpp b/Source/modules/encryptedmedia/HTMLMediaElementEncryptedMedia.cpp
index e3e2d6eea141e5501ca34c85eeddd2ae09ef89f2..32a5091a46e0e34f84c5e945c6984fc2646577f5 100644
--- a/Source/modules/encryptedmedia/HTMLMediaElementEncryptedMedia.cpp
+++ b/Source/modules/encryptedmedia/HTMLMediaElementEncryptedMedia.cpp
@@ -63,8 +63,8 @@ private:
void reportSetFailed(ExceptionCode, const String& errorMessage);
- RawPtrWillBeMember<HTMLMediaElement> m_element;
- Persistent<MediaKeys> m_newMediaKeys;
+ RawPtrWillBePersistent<HTMLMediaElement> m_element;
haraken 2014/09/25 03:35:27 Are you sure that the persistent handle doesn't ca
DanielChow 2014/09/25 03:48:32 I am not sure that the persistent handle doesn't c
sof 2014/09/25 05:21:24 Definitely worth checking, run them with --enable-
haraken 2014/09/25 05:45:02 If that's the case, I think we should use a RefPtr
+ RawPtrWillBePersistent<MediaKeys> m_newMediaKeys;
haraken 2014/09/25 03:35:27 MediaKeys are on-heap in both oilpan and non-oilpa
DanielChow 2014/09/25 03:48:32 Done.
Timer<SetMediaKeysHandler> m_timer;
};
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698