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

Unified Diff: chrome/test/chromedriver/chrome_launcher.h

Issue 12163003: Add FilePath to base namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 11 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/test/chromedriver/chrome_finder.h ('k') | chrome/test/chromedriver/chrome_launcher_impl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/chromedriver/chrome_launcher.h
diff --git a/chrome/test/chromedriver/chrome_launcher.h b/chrome/test/chromedriver/chrome_launcher.h
index a0caa1ac024ff02a2d0211e967e2793999d77746..3763d2c823a4b3696de9bc895b5fc134a8e49d0c 100644
--- a/chrome/test/chromedriver/chrome_launcher.h
+++ b/chrome/test/chromedriver/chrome_launcher.h
@@ -8,9 +8,12 @@
#include "base/memory/scoped_ptr.h"
class Chrome;
-class FilePath;
class Status;
+namespace base {
+class FilePath;
+}
+
// Launches Chrome. Must be thread safe.
class ChromeLauncher {
public:
@@ -18,7 +21,7 @@ class ChromeLauncher {
// Launches Chrome found at the given path. If the path
// is empty, the default Chrome binary is to be used.
- virtual Status Launch(const FilePath& chrome_exe,
+ virtual Status Launch(const base::FilePath& chrome_exe,
scoped_ptr<Chrome>* chrome) = 0;
};
« no previous file with comments | « chrome/test/chromedriver/chrome_finder.h ('k') | chrome/test/chromedriver/chrome_launcher_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698