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

Unified Diff: webkit/media/cache_util_unittest.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
« ipc/ipc_message_utils.cc ('K') | « webkit/fileapi/obfuscated_file_util.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/media/cache_util_unittest.cc
diff --git a/webkit/media/cache_util_unittest.cc b/webkit/media/cache_util_unittest.cc
index bd2ff380c3638546d8605d7ee29ab7cb5acb7508..2703026eff8fafcccb5b0ac6666f287ac1fc88ec 100644
--- a/webkit/media/cache_util_unittest.cc
+++ b/webkit/media/cache_util_unittest.cc
@@ -85,10 +85,10 @@ TEST(CacheUtilTest, GetReasonsForUncacheability) {
},
};
for (size_t i = 0; i < arraysize(tests); ++i) {
- SCOPED_TRACE(StringPrintf("case: %" PRIuS
- ", version: %d, code: %d, headers: %s",
- i, tests[i].version, tests[i].status_code,
- tests[i].headers));
+ SCOPED_TRACE(base::StringPrintf("case: %" PRIuS
+ ", version: %d, code: %d, headers: %s",
+ i, tests[i].version, tests[i].status_code,
+ tests[i].headers));
EXPECT_EQ(GetReasonsForUncacheability(CreateResponse(tests[i])),
tests[i].expected_reasons);
}
« ipc/ipc_message_utils.cc ('K') | « webkit/fileapi/obfuscated_file_util.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698