summaryrefslogtreecommitdiffstats
path: root/chrome/test/webdriver/commands/implicit_wait_command.h
diff options
context:
space:
mode:
authorerg@google.com <erg@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2011-02-14 23:54:47 +0000
committererg@google.com <erg@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2011-02-14 23:54:47 +0000
commita5add2c2624eaffd9290ee6b760b504cfc07a2ed (patch)
treef2a0dd83cbbf771fdf9ed8f01e72a89dfa9d3390 /chrome/test/webdriver/commands/implicit_wait_command.h
parent98723c4a32b20c4ba1ed95b0e9056788fb413ce6 (diff)
downloadchromium_src-a5add2c2624eaffd9290ee6b760b504cfc07a2ed.zip
chromium_src-a5add2c2624eaffd9290ee6b760b504cfc07a2ed.tar.gz
chromium_src-a5add2c2624eaffd9290ee6b760b504cfc07a2ed.tar.bz2
More test out-of-lining.
BUG=none TEST=compiles Review URL: http://codereview.chromium.org/6484043 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@74879 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/test/webdriver/commands/implicit_wait_command.h')
-rw-r--r--chrome/test/webdriver/commands/implicit_wait_command.h11
1 files changed, 5 insertions, 6 deletions
diff --git a/chrome/test/webdriver/commands/implicit_wait_command.h b/chrome/test/webdriver/commands/implicit_wait_command.h
index 0475c4b..f0abf5b 100644
--- a/chrome/test/webdriver/commands/implicit_wait_command.h
+++ b/chrome/test/webdriver/commands/implicit_wait_command.h
@@ -19,19 +19,18 @@ namespace webdriver {
// http://code.google.com/p/selenium/wiki/JsonWireProtocol#/session/:sessionId/timeouts/implicit_wait
class ImplicitWaitCommand : public WebDriverCommand {
public:
- inline ImplicitWaitCommand(const std::vector<std::string>& path_segments,
- const DictionaryValue* const parameters)
- : WebDriverCommand(path_segments, parameters), ms_to_wait_(0) {}
- virtual ~ImplicitWaitCommand() {}
+ ImplicitWaitCommand(const std::vector<std::string>& path_segments,
+ const DictionaryValue* const parameters);
+ virtual ~ImplicitWaitCommand();
virtual bool Init(Response* const response);
- virtual bool DoesPost() { return true; }
+ virtual bool DoesPost();
virtual void ExecutePost(Response* const response);
private:
int ms_to_wait_;
- virtual bool RequiresValidTab() { return true; }
+ virtual bool RequiresValidTab();
DISALLOW_COPY_AND_ASSIGN(ImplicitWaitCommand);
};