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

Unified Diff: media/cdm/aes_decryptor.cc

Issue 1428753010: Add unit tests for CdmAdapter (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: inline GURL Created 5 years, 1 month 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
« no previous file with comments | « media/BUILD.gn ('k') | media/cdm/cdm_adapter_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/cdm/aes_decryptor.cc
diff --git a/media/cdm/aes_decryptor.cc b/media/cdm/aes_decryptor.cc
index 8eaa0585fd1cf6a8c282b6dcb3f5482544c25564..1c3f3674e3852de69d77434ff3ed50cfa75cfb92 100644
--- a/media/cdm/aes_decryptor.cc
+++ b/media/cdm/aes_decryptor.cc
@@ -309,8 +309,8 @@ void AesDecryptor::CreateSessionAndGenerateRequest(
promise->resolve(session_id);
// No URL needed for license requests.
- session_message_cb_.Run(session_id, LICENSE_REQUEST, message,
- GURL::EmptyGURL());
+ GURL empty_gurl;
+ session_message_cb_.Run(session_id, LICENSE_REQUEST, message, empty_gurl);
}
void AesDecryptor::LoadSession(SessionType session_type,
« no previous file with comments | « media/BUILD.gn ('k') | media/cdm/cdm_adapter_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698