| Index: chrome/test/webdriver/session.h | 
| =================================================================== | 
| --- chrome/test/webdriver/session.h	(revision 77771) | 
| +++ chrome/test/webdriver/session.h	(working copy) | 
| @@ -169,6 +169,12 @@ | 
|  | 
| inline int current_window_id() const { return current_window_id_; } | 
|  | 
| +  inline bool use_native_events() const { return use_native_events_; } | 
| + | 
| +  inline void set_use_native_events(bool use_native_events) { | 
| +    use_native_events_ = use_native_events; | 
| +  } | 
| + | 
| private: | 
| void RunSessionTask(Task* task); | 
| void RunSessionTaskOnSessionThread( | 
| @@ -210,6 +216,8 @@ | 
| std::string current_frame_xpath_; | 
| int current_window_id_; | 
|  | 
| +  bool use_native_events_; | 
| + | 
| DISALLOW_COPY_AND_ASSIGN(Session); | 
| }; | 
|  | 
|  |