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

Unified Diff: chrome/renderer/spellchecker/spellcheck_unittest.cc

Issue 18286004: Move PathExists to base namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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 | « chrome/renderer/chrome_render_process_observer.cc ('k') | chrome/test/automation/proxy_launcher.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/renderer/spellchecker/spellcheck_unittest.cc
diff --git a/chrome/renderer/spellchecker/spellcheck_unittest.cc b/chrome/renderer/spellchecker/spellcheck_unittest.cc
index 5f40d7abf58cae7fb9066caa584e97349b378647..8162944b6f6da6cd0d644265fbb7ca98f42c9116 100644
--- a/chrome/renderer/spellchecker/spellcheck_unittest.cc
+++ b/chrome/renderer/spellchecker/spellcheck_unittest.cc
@@ -1291,7 +1291,7 @@ TEST_F(SpellCheckTest, DictionaryFiles) {
for (size_t i = 0; i < spellcheck_languages.size(); ++i) {
base::FilePath dict = chrome::spellcheck_common::GetVersionedFileName(
spellcheck_languages[i], hunspell);
- EXPECT_TRUE(file_util::PathExists(dict)) << dict.value() << " not found";
+ EXPECT_TRUE(base::PathExists(dict)) << dict.value() << " not found";
}
}
« no previous file with comments | « chrome/renderer/chrome_render_process_observer.cc ('k') | chrome/test/automation/proxy_launcher.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698