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

Unified Diff: media/cdm/ppapi/cdm_adapter.cc

Issue 301933002: Changing default_url to destination_url for consistency (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: removing nit Created 6 years, 7 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
« no previous file with comments | « media/cdm/ppapi/cdm_adapter.h ('k') | media/filters/pipeline_integration_test.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/cdm/ppapi/cdm_adapter.cc
diff --git a/media/cdm/ppapi/cdm_adapter.cc b/media/cdm/ppapi/cdm_adapter.cc
index eb4045621f5257f7b36c63ab1a3811badd8fc77a..3c4d698a89ea5b21400fb2f5dde2f48521e5da25 100644
--- a/media/cdm/ppapi/cdm_adapter.cc
+++ b/media/cdm/ppapi/cdm_adapter.cc
@@ -581,10 +581,11 @@ void CdmAdapter::SendSessionCreatedInternal(int32_t result,
pp::ContentDecryptor_Private::SessionCreated(session_id, web_session_id);
}
-void CdmAdapter::SendSessionMessageInternal(int32_t result,
- uint32_t session_id,
- const std::vector<uint8>& message,
- const std::string& default_url) {
+void CdmAdapter::SendSessionMessageInternal(
+ int32_t result,
+ uint32_t session_id,
+ const std::vector<uint8>& message,
+ const std::string& destination_url) {
PP_DCHECK(result == PP_OK);
pp::VarArrayBuffer message_array_buffer(message.size());
@@ -593,7 +594,7 @@ void CdmAdapter::SendSessionMessageInternal(int32_t result,
}
pp::ContentDecryptor_Private::SessionMessage(
- session_id, message_array_buffer, default_url);
+ session_id, message_array_buffer, destination_url);
}
void CdmAdapter::SendSessionReadyInternal(int32_t result, uint32_t session_id) {
« no previous file with comments | « media/cdm/ppapi/cdm_adapter.h ('k') | media/filters/pipeline_integration_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698