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

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

Issue 6532068: Fix a bug in ImplicitWaitCommand: we must explicitly check if the ms param... (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: Reverting changes added while debugging 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.h
===================================================================
--- chrome/test/webdriver/session.h (revision 75464)
+++ chrome/test/webdriver/session.h (working copy)
@@ -7,6 +7,7 @@
#include <map>
#include <string>
+#include <vector>
#include "base/scoped_ptr.h"
#include "base/string16.h"
@@ -98,7 +99,7 @@
inline const std::string& id() const { return id_; }
- inline int implicit_wait() { return implicit_wait_; }
+ inline int implicit_wait() const { return implicit_wait_; }
inline void set_implicit_wait(const int& timeout) {
implicit_wait_ = timeout > 0 ? timeout : 0;
}
« chrome/chrome_tests.gypi ('K') | « chrome/test/webdriver/commands/implicit_wait_command_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698