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

Unified Diff: ppapi/cpp/private/content_decryptor_private.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 | « ppapi/cpp/private/content_decryptor_private.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/cpp/private/content_decryptor_private.cc
diff --git a/ppapi/cpp/private/content_decryptor_private.cc b/ppapi/cpp/private/content_decryptor_private.cc
index bed411af6a05564df8483ac5ddea1ce688805d7b..a43199d9d121362d718c1fbca1120214eba32eeb 100644
--- a/ppapi/cpp/private/content_decryptor_private.cc
+++ b/ppapi/cpp/private/content_decryptor_private.cc
@@ -235,16 +235,17 @@ void ContentDecryptor_Private::SessionCreated(
}
}
-void ContentDecryptor_Private::SessionMessage(uint32_t session_id,
- pp::VarArrayBuffer message,
- const std::string& default_url) {
+void ContentDecryptor_Private::SessionMessage(
+ uint32_t session_id,
+ pp::VarArrayBuffer message,
+ const std::string& destination_url) {
if (has_interface<PPB_ContentDecryptor_Private>()) {
- pp::Var default_url_var(default_url);
+ pp::Var destination_url_var(destination_url);
get_interface<PPB_ContentDecryptor_Private>()->SessionMessage(
associated_instance_.pp_instance(),
session_id,
message.pp_var(),
- default_url_var.pp_var());
+ destination_url_var.pp_var());
}
}
« no previous file with comments | « ppapi/cpp/private/content_decryptor_private.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698