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

Side by Side Diff: third_party/WebKit/Source/modules/encryptedmedia/MediaKeys.h

Issue 2577053002: ActiveScriptWrappable: GC wrappers in detached ExecutionContexts. (Closed)
Patch Set: component build fix(msvc) Created 4 years 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 unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2013 Apple Inc. All rights reserved. 2 * Copyright (C) 2013 Apple Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 1. Redistributions of source code must retain the above copyright 7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer. 8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright 9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the 10 * notice, this list of conditions and the following disclaimer in the
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
45 class ExceptionState; 45 class ExceptionState;
46 class ExecutionContext; 46 class ExecutionContext;
47 class HTMLMediaElement; 47 class HTMLMediaElement;
48 class MediaKeySession; 48 class MediaKeySession;
49 class ScriptState; 49 class ScriptState;
50 class WebContentDecryptionModule; 50 class WebContentDecryptionModule;
51 51
52 // References are held by JS and HTMLMediaElement. 52 // References are held by JS and HTMLMediaElement.
53 // The WebContentDecryptionModule has the same lifetime as this object. 53 // The WebContentDecryptionModule has the same lifetime as this object.
54 class MediaKeys : public GarbageCollectedFinalized<MediaKeys>, 54 class MediaKeys : public GarbageCollectedFinalized<MediaKeys>,
55 public ActiveScriptWrappable, 55 public ActiveScriptWrappable<MediaKeys>,
56 public SuspendableObject, 56 public SuspendableObject,
57 public ScriptWrappable { 57 public ScriptWrappable {
58 USING_GARBAGE_COLLECTED_MIXIN(MediaKeys); 58 USING_GARBAGE_COLLECTED_MIXIN(MediaKeys);
59 DEFINE_WRAPPERTYPEINFO(); 59 DEFINE_WRAPPERTYPEINFO();
60 60
61 public: 61 public:
62 static MediaKeys* create( 62 static MediaKeys* create(
63 ExecutionContext*, 63 ExecutionContext*,
64 const WebVector<WebEncryptedMediaSessionType>& supportedSessionTypes, 64 const WebVector<WebEncryptedMediaSessionType>& supportedSessionTypes,
65 std::unique_ptr<WebContentDecryptionModule>); 65 std::unique_ptr<WebContentDecryptionModule>);
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
127 // object will be prevented until the setMediaKeys() completes. 127 // object will be prevented until the setMediaKeys() completes.
128 bool m_reservedForMediaElement; 128 bool m_reservedForMediaElement;
129 129
130 HeapDeque<Member<PendingAction>> m_pendingActions; 130 HeapDeque<Member<PendingAction>> m_pendingActions;
131 Timer<MediaKeys> m_timer; 131 Timer<MediaKeys> m_timer;
132 }; 132 };
133 133
134 } // namespace blink 134 } // namespace blink
135 135
136 #endif // MediaKeys_h 136 #endif // MediaKeys_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698