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

Unified Diff: extensions/browser/api/bluetooth/bluetooth_private_api.cc

Issue 1227413007: Move ReplaceStringPlaceholders to base namespace. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@join
Patch Set: Created 5 years, 5 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 | « extensions/browser/api/app_window/app_window_api.cc ('k') | extensions/renderer/i18n_custom_bindings.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: extensions/browser/api/bluetooth/bluetooth_private_api.cc
diff --git a/extensions/browser/api/bluetooth/bluetooth_private_api.cc b/extensions/browser/api/bluetooth/bluetooth_private_api.cc
index 0ac112a2f3f66f5acde48e5e44a978a654be59db..85bbbc573768f88aec81dd9fc0e1bc9180e60010 100644
--- a/extensions/browser/api/bluetooth/bluetooth_private_api.cc
+++ b/extensions/browser/api/bluetooth/bluetooth_private_api.cc
@@ -228,8 +228,8 @@ void BluetoothPrivateSetAdapterStateFunction::SendError() {
std::vector<std::string> replacements(1);
replacements[0] = base::JoinString(failed_vector, ", ");
- std::string error =
- ReplaceStringPlaceholders(kSetAdapterPropertyError, replacements, NULL);
+ std::string error = base::ReplaceStringPlaceholders(kSetAdapterPropertyError,
+ replacements, NULL);
SetError(error);
SendResponse(false);
}
« no previous file with comments | « extensions/browser/api/app_window/app_window_api.cc ('k') | extensions/renderer/i18n_custom_bindings.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698