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

Unified Diff: components/history/core/test/history_unittest_base.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 | « components/dom_distiller/core/viewer.cc ('k') | content/child/blink_platform_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/history/core/test/history_unittest_base.cc
diff --git a/components/history/core/test/history_unittest_base.cc b/components/history/core/test/history_unittest_base.cc
index 040a4744407ce15c2623c3978370b0b0935baf8a..fd180346e59e73710008679c56fd6ab8a208377c 100644
--- a/components/history/core/test/history_unittest_base.cc
+++ b/components/history/core/test/history_unittest_base.cc
@@ -29,7 +29,7 @@ void HistoryUnitTestBase::ExecuteSQLScript(const base::FilePath& sql_path,
sql_time.push_back(base::StringPrintf("%" PRId64, now)); // last_visit_time
sql_time.push_back(base::StringPrintf("%" PRId64, now)); // visit_time
sql_time.push_back(base::StringPrintf("%" PRId64, now)); // time_slot
- sql = ReplaceStringPlaceholders(sql, sql_time, NULL);
+ sql = base::ReplaceStringPlaceholders(sql, sql_time, NULL);
sql::Connection connection;
ASSERT_TRUE(connection.Open(db_path));
« no previous file with comments | « components/dom_distiller/core/viewer.cc ('k') | content/child/blink_platform_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698