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

Unified Diff: Source/modules/encryptedmedia/MediaKeySession.h

Issue 864533002: Fix template angle bracket syntax in modules (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 11 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
Index: Source/modules/encryptedmedia/MediaKeySession.h
diff --git a/Source/modules/encryptedmedia/MediaKeySession.h b/Source/modules/encryptedmedia/MediaKeySession.h
index 45f12935178ddca544e74840374219b9f89ae2dd..24a3c8daf2282b9a8903b534af43f84f8456591c 100644
--- a/Source/modules/encryptedmedia/MediaKeySession.h
+++ b/Source/modules/encryptedmedia/MediaKeySession.h
@@ -126,10 +126,10 @@ private:
bool m_isClosed; // Is the CDM finished with this session?
// Keep track of the closed promise.
- typedef ScriptPromiseProperty<Member<MediaKeySession>, ToV8UndefinedGenerator, RefPtrWillBeMember<DOMException> > ClosedPromise;
+ typedef ScriptPromiseProperty<Member<MediaKeySession>, ToV8UndefinedGenerator, RefPtrWillBeMember<DOMException>> ClosedPromise;
Member<ClosedPromise> m_closedPromise;
- HeapDeque<Member<PendingAction> > m_pendingActions;
+ HeapDeque<Member<PendingAction>> m_pendingActions;
Timer<MediaKeySession> m_actionTimer;
};

Powered by Google App Engine
This is Rietveld 408576698