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

Unified Diff: chrome/browser/printing/print_dialog_cloud.cc

Issue 12315071: Revert 184352 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 7 years, 10 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: chrome/browser/printing/print_dialog_cloud.cc
===================================================================
--- chrome/browser/printing/print_dialog_cloud.cc (revision 184354)
+++ chrome/browser/printing/print_dialog_cloud.cc (working copy)
@@ -161,17 +161,17 @@
void CloudPrintDataSenderHelper::CallJavascriptFunction(
const std::wstring& function_name) {
- web_ui_->CallJavascriptFunction(base::WideToASCII(function_name));
+ web_ui_->CallJavascriptFunction(WideToASCII(function_name));
}
void CloudPrintDataSenderHelper::CallJavascriptFunction(
const std::wstring& function_name, const Value& arg) {
- web_ui_->CallJavascriptFunction(base::WideToASCII(function_name), arg);
+ web_ui_->CallJavascriptFunction(WideToASCII(function_name), arg);
}
void CloudPrintDataSenderHelper::CallJavascriptFunction(
const std::wstring& function_name, const Value& arg1, const Value& arg2) {
- web_ui_->CallJavascriptFunction(base::WideToASCII(function_name), arg1, arg2);
+ web_ui_->CallJavascriptFunction(WideToASCII(function_name), arg1, arg2);
}
void CloudPrintDataSenderHelper::CallJavascriptFunction(
@@ -180,7 +180,7 @@
const Value& arg2,
const Value& arg3) {
web_ui_->CallJavascriptFunction(
- base::WideToASCII(function_name), arg1, arg2, arg3);
+ WideToASCII(function_name), arg1, arg2, arg3);
}
// Clears out the pointer we're using to communicate. Either routine is
« no previous file with comments | « chrome/browser/policy/policy_path_parser_win.cc ('k') | chrome/browser/printing/printing_layout_browsertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698