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

Unified Diff: chrome/test/webdriver/commands/set_timeout_commands.cc

Issue 23526047: Delete old chromedriver code, and remove mongoose webserver. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 7 years, 3 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/commands/set_timeout_commands.cc
diff --git a/chrome/test/webdriver/commands/set_timeout_commands.cc b/chrome/test/webdriver/commands/set_timeout_commands.cc
deleted file mode 100644
index cbd4a41bdfcf4abcaaacf6dd00a55eef8258d50a..0000000000000000000000000000000000000000
--- a/chrome/test/webdriver/commands/set_timeout_commands.cc
+++ /dev/null
@@ -1,83 +0,0 @@
-// Copyright (c) 2011 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#include "chrome/test/webdriver/commands/set_timeout_commands.h"
-
-#include <string>
-
-#include "base/strings/stringprintf.h"
-#include "base/values.h"
-#include "chrome/test/webdriver/commands/response.h"
-#include "chrome/test/webdriver/webdriver_error.h"
-#include "chrome/test/webdriver/webdriver_session.h"
-
-namespace webdriver {
-
-SetTimeoutCommand::SetTimeoutCommand(
- const std::vector<std::string>& path_segments,
- const DictionaryValue* const parameters) :
- WebDriverCommand(path_segments, parameters) {}
-
-SetTimeoutCommand::~SetTimeoutCommand() {}
-
-bool SetTimeoutCommand::DoesPost() {
- return true;
-}
-
-void SetTimeoutCommand::ExecutePost(Response* const response) {
- // Timeout value in milliseconds
- const char kTimeoutMsKey[] = "ms";
-
- if (!HasParameter(kTimeoutMsKey)) {
- response->SetError(new Error(kBadRequest, "Request missing ms parameter"));
- return;
- }
-
- int ms_to_wait;
- if (!GetIntegerParameter(kTimeoutMsKey, &ms_to_wait)) {
- // Client may have sent us a floating point number. Since DictionaryValue
- // will not do a down cast for us, we must explicitly check for it here.
- // Note webdriver only supports whole milliseconds for a timeout value, so
- // we are safe to downcast.
- double ms;
- if (!GetDoubleParameter(kTimeoutMsKey, &ms)) {
- response->SetError(new Error(
- kBadRequest, "ms parameter is not a number"));
- return;
- }
- ms_to_wait = static_cast<int>(ms);
- }
-
- // Validate the wait time before setting it to the session.
- if (ms_to_wait < 0) {
- response->SetError(new Error(kBadRequest, "Timeout must be non-negative"));
- return;
- }
-
- SetTimeout(ms_to_wait);
-}
-
-SetAsyncScriptTimeoutCommand::SetAsyncScriptTimeoutCommand(
- const std::vector<std::string>& path_segments,
- const DictionaryValue* const parameters)
- : SetTimeoutCommand(path_segments, parameters) {}
-
-SetAsyncScriptTimeoutCommand::~SetAsyncScriptTimeoutCommand() {}
-
-void SetAsyncScriptTimeoutCommand::SetTimeout(int timeout_ms) {
- session_->set_async_script_timeout(timeout_ms);
-}
-
-ImplicitWaitCommand::ImplicitWaitCommand(
- const std::vector<std::string>& path_segments,
- const DictionaryValue* const parameters)
- : SetTimeoutCommand(path_segments, parameters) {}
-
-ImplicitWaitCommand::~ImplicitWaitCommand() {}
-
-void ImplicitWaitCommand::SetTimeout(int timeout_ms) {
- session_->set_implicit_wait(timeout_ms);
-}
-
-} // namespace webdriver
« no previous file with comments | « chrome/test/webdriver/commands/set_timeout_commands.h ('k') | chrome/test/webdriver/commands/set_timeout_commands_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698