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

Unified Diff: content/renderer/hyphenator/hyphenator_unittest.cc

Issue 12286020: Replace FilePath with base::FilePath. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 10 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: content/renderer/hyphenator/hyphenator_unittest.cc
diff --git a/content/renderer/hyphenator/hyphenator_unittest.cc b/content/renderer/hyphenator/hyphenator_unittest.cc
index b849929388a869adeb0177b1f95b14a10f044258..2d41503fc89d9d07028242d5fd294574903f0708 100644
--- a/content/renderer/hyphenator/hyphenator_unittest.cc
+++ b/content/renderer/hyphenator/hyphenator_unittest.cc
@@ -44,7 +44,7 @@ class MockListener : public IPC::Listener {
// Open the default dictionary and call the OnControllMessageReceived
// function with a HyphenatorMsg_SetDictionary message.
- FilePath dictionary_path;
+ base::FilePath dictionary_path;
if (!PathService::Get(base::DIR_SOURCE_ROOT, &dictionary_path))
return false;
dictionary_path = dictionary_path.AppendASCII("third_party");
@@ -84,7 +84,7 @@ class HyphenatorTest : public testing::Test {
}
bool Initialize() {
- FilePath dictionary_path;
+ base::FilePath dictionary_path;
if (!PathService::Get(base::DIR_SOURCE_ROOT, &dictionary_path))
return false;
dictionary_path = dictionary_path.AppendASCII("third_party");
« no previous file with comments | « content/renderer/gpu/gpu_benchmarking_extension.cc ('k') | content/renderer/pepper/pepper_file_chooser_host.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698