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

Unified Diff: chrome/browser/password_manager/native_backend_kwallet_x.cc

Issue 7633055: base: Fix the TODO in string_util.h (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix chrome_mini_installer.cc Created 9 years, 4 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/password_manager/native_backend_kwallet_x.cc
diff --git a/chrome/browser/password_manager/native_backend_kwallet_x.cc b/chrome/browser/password_manager/native_backend_kwallet_x.cc
index 064cb339f741988b20017600bc85e5c12d72691c..ffbd55baae53ab9f2dd043b80fa80750c94a4b6c 100644
--- a/chrome/browser/password_manager/native_backend_kwallet_x.cc
+++ b/chrome/browser/password_manager/native_backend_kwallet_x.cc
@@ -9,7 +9,7 @@
#include "base/logging.h"
#include "base/pickle.h"
#include "base/stl_util.h"
-#include "base/string_util.h"
+#include "base/stringprintf.h"
#include "content/browser/browser_thread.h"
#include "grit/chromium_strings.h"
#include "ui/base/l10n/l10n_util.h"
@@ -650,7 +650,7 @@ int NativeBackendKWallet::WalletHandle() {
std::string NativeBackendKWallet::GetProfileSpecificFolderName() const {
// Originally, the folder name was always just "Chrome Form Data".
// Now we use it to distinguish passwords for different profiles.
- return StringPrintf("%s (%d)", kKWalletFolder, profile_id_);
+ return base::StringPrintf("%s (%d)", kKWalletFolder, profile_id_);
}
void NativeBackendKWallet::MigrateToProfileSpecificLogins() {

Powered by Google App Engine
This is Rietveld 408576698