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

Unified Diff: webkit/tools/test_shell/mock_spellcheck_unittest.cc

Issue 3404027: webkit: Append base:: in the StringPrintf calls. (Closed) Base URL: http://src.chromium.org/git/chromium.git
Patch Set: Created 10 years, 3 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 | « webkit/support/webkit_support.cc ('k') | webkit/tools/test_shell/test_webview_delegate.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/tools/test_shell/mock_spellcheck_unittest.cc
diff --git a/webkit/tools/test_shell/mock_spellcheck_unittest.cc b/webkit/tools/test_shell/mock_spellcheck_unittest.cc
index 17912bb6b434a9396375111a00ba60964e334469..bcf3742fd707a160b9f6e540c3d6aa5f791557a2 100644
--- a/webkit/tools/test_shell/mock_spellcheck_unittest.cc
+++ b/webkit/tools/test_shell/mock_spellcheck_unittest.cc
@@ -4,6 +4,7 @@
#include "base/format_macros.h"
#include "base/string_util.h"
+#include "base/stringprintf.h"
#include "base/utf_string_conversions.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "webkit/tools/test_shell/mock_spellcheck.h"
@@ -63,7 +64,7 @@ TEST_F(MockSpellCheckTest, SpellCheckStrings) {
MockSpellCheck spellchecker;
for (size_t i = 0; i < ARRAYSIZE_UNSAFE(kTestCases); ++i) {
- SCOPED_TRACE(StringPrintf("kTestCases[%" PRIuS "]", i));
+ SCOPED_TRACE(base::StringPrintf("kTestCases[%" PRIuS "]", i));
std::wstring input(kTestCases[i].input);
int misspelling_start;
« no previous file with comments | « webkit/support/webkit_support.cc ('k') | webkit/tools/test_shell/test_webview_delegate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698