| Index: chrome/test/webdriver/session.h
|
| ===================================================================
|
| --- chrome/test/webdriver/session.h (revision 79882)
|
| +++ chrome/test/webdriver/session.h (working copy)
|
| @@ -212,6 +212,12 @@
|
|
|
| const FrameId& current_target() const;
|
|
|
| + 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(
|
| @@ -245,6 +251,8 @@
|
|
|
| FrameId current_target_;
|
|
|
| + bool use_native_events_;
|
| +
|
| DISALLOW_COPY_AND_ASSIGN(Session);
|
| };
|
|
|
|
|