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

Unified Diff: chrome/browser/sync/glue/session_model_associator.h

Issue 7004007: iwyu: Include stringprintf.h where appropriate, part 2. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix 2. Created 9 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 | « chrome/browser/shell_integration_linux.cc ('k') | chrome/browser/task_manager/task_manager.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/sync/glue/session_model_associator.h
diff --git a/chrome/browser/sync/glue/session_model_associator.h b/chrome/browser/sync/glue/session_model_associator.h
index b9750130619debdc09e5c22f3bef6d9c4d647229..8c7972b5cbc373f908270e450d12d1dbb3eb13ed 100644
--- a/chrome/browser/sync/glue/session_model_associator.h
+++ b/chrome/browser/sync/glue/session_model_associator.h
@@ -15,7 +15,7 @@
#include "base/gtest_prod_util.h"
#include "base/memory/scoped_vector.h"
#include "base/observer_list.h"
-#include "base/string_util.h"
+#include "base/stringprintf.h"
#include "base/threading/non_thread_safe.h"
#include "base/utf_string_conversions.h"
#include "chrome/browser/sessions/session_id.h"
@@ -307,8 +307,7 @@ class SessionModelAssociator
static inline std::string TabIdToTag(
const std::string machine_tag,
size_t tab_node_id) {
- return StringPrintf("%s %"PRIuS"",
- machine_tag.c_str(), tab_node_id);
+ return base::StringPrintf("%s %"PRIuS"", machine_tag.c_str(), tab_node_id);
}
// Initializes the tag corresponding to this machine.
« no previous file with comments | « chrome/browser/shell_integration_linux.cc ('k') | chrome/browser/task_manager/task_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698