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

Unified Diff: ui/test/test_suite.cc

Issue 12217101: Replace FilePath with base::FilePath in some more top level directories. (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
« no previous file with comments | « ui/surface/d3d9_utils_win.cc ('k') | ui/views/controls/textfield/native_textfield_views_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/test/test_suite.cc
diff --git a/ui/test/test_suite.cc b/ui/test/test_suite.cc
index 4d372141ff8814fa5e320a922a93be1d9da517c4..47fc7902e41514bf7dd6201c9871585731c9fe21 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
« no previous file with comments | « ui/surface/d3d9_utils_win.cc ('k') | ui/views/controls/textfield/native_textfield_views_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698