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

Unified Diff: chrome/test/webdriver/session_manager.h

Issue 6630001: Allow webdriver users to choose between sending the key events when... (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: '' Created 9 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
Index: chrome/test/webdriver/session_manager.h
===================================================================
--- chrome/test/webdriver/session_manager.h (revision 76851)
+++ chrome/test/webdriver/session_manager.h (working copy)
@@ -41,6 +41,9 @@
void set_chrome_dir(const FilePath& chrome_dir);
FilePath chrome_dir() const;
+ void set_use_native_events(bool use_native_events);
+ bool use_native_events() const;
+
private:
SessionManager();
~SessionManager();
@@ -51,6 +54,7 @@
std::string port_;
std::string url_base_;
FilePath chrome_dir_;
+ bool use_native_events_;
DISALLOW_COPY_AND_ASSIGN(SessionManager);
};

Powered by Google App Engine
This is Rietveld 408576698