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

Unified Diff: chrome/test/webdriver/webdriver_session.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/ui/ui_test.h ('k') | chrome/test/webdriver/webdriver_util.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/webdriver/webdriver_session.h
diff --git a/chrome/test/webdriver/webdriver_session.h b/chrome/test/webdriver/webdriver_session.h
index 23395afce12bee7eb051a42ef8cfc812be41befc..9f02c4ac375dda0f31cd6b1410d9599586b6371a 100644
--- a/chrome/test/webdriver/webdriver_session.h
+++ b/chrome/test/webdriver/webdriver_session.h
@@ -24,10 +24,9 @@
#include "chrome/test/webdriver/webdriver_element_id.h"
#include "chrome/test/webdriver/webdriver_logging.h"
-class FilePath;
-
namespace base {
class DictionaryValue;
+class FilePath;
class ListValue;
class Value;
class WaitableEvent;
@@ -120,8 +119,9 @@ class Session {
Error* SendKeys(const string16& keys);
// Sets the file paths to the file upload control under the given location.
- Error* DragAndDropFilePaths(const Point& location,
- const std::vector<FilePath::StringType>& paths);
+ Error* DragAndDropFilePaths(
+ const Point& location,
+ const std::vector<base::FilePath::StringType>& paths);
// Clicks the mouse at the given location using the given button.
Error* MouseMoveAndClick(const Point& location,
@@ -315,7 +315,7 @@ class Session {
Error* WaitForAllViewsToStopLoading();
// Install extension at |path|.
- Error* InstallExtension(const FilePath& path, std::string* extension_id);
+ Error* InstallExtension(const base::FilePath& path, std::string* extension_id);
Error* GetExtensionsInfo(base::ListValue* extension_ids);
@@ -393,7 +393,7 @@ class Session {
const Logger& logger() const;
- const FilePath& temp_dir() const;
+ const base::FilePath& temp_dir() const;
const Capabilities& capabilities() const;
« no previous file with comments | « chrome/test/ui/ui_test.h ('k') | chrome/test/webdriver/webdriver_util.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698