diff options
author | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-02-10 05:15:45 +0000 |
---|---|---|
committer | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-02-10 05:15:45 +0000 |
commit | 79f6388902881a0aab426e9606c544b68ab3b9bc (patch) | |
tree | df8da7e82fded47bccf4fe32922a8451a475bf97 /ui/test | |
parent | 6d4b67a4b50d73d5001aec99014ac40bc504871a (diff) | |
download | chromium_src-79f6388902881a0aab426e9606c544b68ab3b9bc.zip chromium_src-79f6388902881a0aab426e9606c544b68ab3b9bc.tar.gz chromium_src-79f6388902881a0aab426e9606c544b68ab3b9bc.tar.bz2 |
Replace FilePath with base::FilePath in some more top level directories.
Review URL: https://codereview.chromium.org/12217101
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@181640 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ui/test')
-rw-r--r-- | ui/test/test_suite.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/test/test_suite.cc b/ui/test/test_suite.cc index 4d37214..47fc790 100644 --- a/ui/test/test_suite.cc +++ b/ui/test/test_suite.cc @@ -42,7 +42,7 @@ void UITestSuite::Initialize() { // TODO(port): make a resource bundle for non-app exes. What's done here // isn't really right because this code needs to depend on chrome_dll // being built. This is inappropriate in app. - FilePath path; + base::FilePath path; PathService::Get(base::DIR_EXE, &path); #if defined(GOOGLE_CHROME_BUILD) path = path.AppendASCII("Google Chrome Framework.framework"); @@ -53,7 +53,7 @@ void UITestSuite::Initialize() { #endif base::mac::SetOverrideFrameworkBundlePath(path); #elif defined(OS_POSIX) - FilePath pak_dir; + base::FilePath pak_dir; #if defined(OS_ANDROID) PathService::Get(ui::DIR_RESOURCE_PAKS_ANDROID, &pak_dir); #else |