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

Unified Diff: media/cdm/aes_decryptor_unittest.cc

Issue 2406073002: EME: Implement Session Closed algorithm (Closed)
Patch Set: Created 4 years, 2 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: media/cdm/aes_decryptor_unittest.cc
diff --git a/media/cdm/aes_decryptor_unittest.cc b/media/cdm/aes_decryptor_unittest.cc
index b70e6d2fa1893abd1cf5db4b5c28a944db20082e..c0747407c729842f40f9f156e4b2a186db4febc9 100644
--- a/media/cdm/aes_decryptor_unittest.cc
+++ b/media/cdm/aes_decryptor_unittest.cc
@@ -334,7 +334,6 @@ class AesDecryptorTest : public testing::TestWithParam<std::string> {
// Closes the session specified by |session_id|.
void CloseSession(const std::string& session_id) {
EXPECT_CALL(*this, OnSessionClosed(session_id));
- EXPECT_CALL(*this, OnSessionKeysChangeCalled(session_id, false));
cdm_->CloseSession(session_id, CreatePromise(RESOLVED));
}

Powered by Google App Engine
This is Rietveld 408576698