Index: chrome/test/chromedriver/status.h |
diff --git a/chrome/test/chromedriver/status.h b/chrome/test/chromedriver/status.h |
deleted file mode 100644 |
index 3ba7ee5a732cd4746c1efd78d386317ee6816805..0000000000000000000000000000000000000000 |
--- a/chrome/test/chromedriver/status.h |
+++ /dev/null |
@@ -1,58 +0,0 @@ |
-// Copyright (c) 2012 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. |
- |
-#ifndef CHROME_TEST_CHROMEDRIVER_STATUS_H_ |
-#define CHROME_TEST_CHROMEDRIVER_STATUS_H_ |
- |
-#include <string> |
- |
-// WebDriver standard status codes. |
-enum StatusCode { |
- kOk = 0, |
- kNoSuchElement = 7, |
- kUnknownCommand = 9, |
- kStaleElementReference = 10, |
- kElementNotVisible = 11, |
- kInvalidElementState = 12, |
- kUnknownError = 13, |
- kJavaScriptError = 17, |
- kXPathLookupError = 19, |
- kNoSuchWindow = 23, |
- kInvalidCookieDomain = 24, |
- kUnexpectedAlertOpen = 26, |
- kNoAlertOpen = 27, |
- kScriptTimeout = 28, |
- kInvalidSelector = 32, |
- kSessionNotCreatedException = 33, |
- // Chrome-specific status codes. |
- kNoSuchSession = 100, |
- kNoSuchFrame, |
- kChromeNotReachable, |
- kDisconnected, |
-}; |
- |
-// Represents a WebDriver status, which may be an error or ok. |
-class Status { |
- public: |
- explicit Status(StatusCode code); |
- Status(StatusCode code, const std::string& details); |
- Status(StatusCode code, const Status& cause); |
- Status(StatusCode code, const std::string& details, const Status& cause); |
- ~Status(); |
- |
- void AddDetails(const std::string& details); |
- |
- bool IsOk() const; |
- bool IsError() const; |
- |
- StatusCode code() const; |
- |
- const std::string& message() const; |
- |
- private: |
- StatusCode code_; |
- std::string msg_; |
-}; |
- |
-#endif // CHROME_TEST_CHROMEDRIVER_STATUS_H_ |