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

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

Issue 117323005: MediaKeySession: update(key) -> update(response). (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: comments addressed Created 6 years, 12 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 26ad01f7e48ad90b2b40f43e70996b7fc0e44695..d90ef744257b1c10ca711292fca580c4c2608fad 100644
--- a/Source/modules/encryptedmedia/MediaKeySession.h
+++ b/Source/modules/encryptedmedia/MediaKeySession.h
@@ -65,7 +65,7 @@ public:
MediaKeyError* error() { return m_error.get(); }
void generateKeyRequest(const String& mimeType, Uint8Array* initData);
- void update(Uint8Array* key, ExceptionState&);
+ void update(Uint8Array* response, ExceptionState&);
void close();
void enqueueEvent(PassRefPtr<Event>);
@@ -80,7 +80,7 @@ public:
private:
MediaKeySession(ExecutionContext*, ContentDecryptionModule*, MediaKeys*);
void keyRequestTimerFired(Timer<MediaKeySession>*);
- void addKeyTimerFired(Timer<MediaKeySession>*);
+ void updateTimerFired(Timer<MediaKeySession>*);
// ContentDecryptionModuleSessionClient
virtual void keyAdded() OVERRIDE;
@@ -103,7 +103,7 @@ private:
Timer<MediaKeySession> m_keyRequestTimer;
Deque<RefPtr<Uint8Array> > m_pendingKeys;
- Timer<MediaKeySession> m_addKeyTimer;
+ Timer<MediaKeySession> m_updateTimer;
ddorwin 2014/01/07 01:10:43 "update timer" could be ambiguous. Minor issue.
};
}
« no previous file with comments | « no previous file | Source/modules/encryptedmedia/MediaKeySession.cpp » ('j') | Source/modules/encryptedmedia/MediaKeySession.cpp » ('J')

Powered by Google App Engine
This is Rietveld 408576698