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

Unified Diff: chrome_frame/test/navigation_test.cc

Issue 12767006: [Cleanup] Remove StringPrintf from global namespace (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase, once more Created 7 years, 9 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_frame/test/navigation_test.cc
diff --git a/chrome_frame/test/navigation_test.cc b/chrome_frame/test/navigation_test.cc
index a8f3d40a4ea855d468edea495b1e8e4bb3445685..d59494ef7aea5aef2fc70fbde1d04b022d190cdc 100644
--- a/chrome_frame/test/navigation_test.cc
+++ b/chrome_frame/test/navigation_test.cc
@@ -881,7 +881,7 @@ class HttpHeaderTest : public MockIEEventSinkTest, public testing::Test {
"Connection: close\r\n"
"Content-Type: %s\r\n"
"X-UA-Compatible: chrome=1\r\n";
- std::string header = StringPrintf(kHeaderFormat, content_type);
+ std::string header = base::StringPrintf(kHeaderFormat, content_type);
std::wstring url = server_mock_.Resolve(relative_url);
EXPECT_CALL(server_mock_, Get(_, StrEq(relative_url), _))
.WillRepeatedly(SendFast(header, data));

Powered by Google App Engine
This is Rietveld 408576698