Chromium Code Reviews| 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.
|
| }; |
| } |