diff options
author | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-02-16 06:26:31 +0000 |
---|---|---|
committer | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-02-16 06:26:31 +0000 |
commit | c42de73d768e53ea90903357ced6ef6001fb7b2f (patch) | |
tree | e3df82e3ce2194a069f5c26c0784ed56cb26b231 /content/renderer/hyphenator | |
parent | a6ba33f4132b66b3e11d26f43eecde12e5a0bbc9 (diff) | |
download | chromium_src-c42de73d768e53ea90903357ced6ef6001fb7b2f.zip chromium_src-c42de73d768e53ea90903357ced6ef6001fb7b2f.tar.gz chromium_src-c42de73d768e53ea90903357ced6ef6001fb7b2f.tar.bz2 |
Replace all FilePath with base::FilePath in content.
This is im preparation for removing the 'using" in file_path.h
Review URL: https://codereview.chromium.org/12226120
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@182940 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/renderer/hyphenator')
-rw-r--r-- | content/renderer/hyphenator/hyphenator_unittest.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/content/renderer/hyphenator/hyphenator_unittest.cc b/content/renderer/hyphenator/hyphenator_unittest.cc index b849929..2d41503 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"); |