| Index: chrome/test/webdriver/webdriver_element_id.cc
|
| diff --git a/chrome/test/webdriver/webdriver_element_id.cc b/chrome/test/webdriver/webdriver_element_id.cc
|
| deleted file mode 100644
|
| index 34e4300b87f256062300fed3321c38e177cbb338..0000000000000000000000000000000000000000
|
| --- a/chrome/test/webdriver/webdriver_element_id.cc
|
| +++ /dev/null
|
| @@ -1,75 +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/webdriver_element_id.h"
|
| -
|
| -#include "base/values.h"
|
| -#include "base/logging.h"
|
| -
|
| -namespace {
|
| -
|
| -// Special dictionary key to identify an element ID to WebDriver atoms and
|
| -// remote clients.
|
| -const char kWebElementKey[] = "ELEMENT";
|
| -
|
| -} // namespace
|
| -
|
| -namespace webdriver {
|
| -
|
| -const char LocatorType::kClassName[] = "className";
|
| -const char LocatorType::kCss[] = "css";
|
| -const char LocatorType::kId[] = "id";
|
| -const char LocatorType::kLinkText[] = "linkText";
|
| -const char LocatorType::kName[] = "name";
|
| -const char LocatorType::kPartialLinkText[] = "partialLinkText";
|
| -const char LocatorType::kTagName[] = "tagName";
|
| -const char LocatorType::kXpath[] = "xpath";
|
| -
|
| -ElementId::ElementId() : is_valid_(false) {}
|
| -
|
| -ElementId::ElementId(const std::string& id) : id_(id), is_valid_(true) {}
|
| -
|
| -ElementId::ElementId(const base::Value* value) {
|
| - is_valid_ = false;
|
| - if (value->IsType(base::Value::TYPE_DICTIONARY)) {
|
| - is_valid_ = static_cast<const base::DictionaryValue*>(value)->
|
| - GetString(kWebElementKey, &id_);
|
| - }
|
| -}
|
| -
|
| -ElementId::~ElementId() {}
|
| -
|
| -base::Value* ElementId::ToValue() const {
|
| - CHECK(is_valid_);
|
| - if (id_.empty())
|
| - return base::Value::CreateNullValue();
|
| - base::DictionaryValue* element = new base::DictionaryValue();
|
| - element->SetString(kWebElementKey, id_);
|
| - return element;
|
| -}
|
| -
|
| -bool ElementId::is_valid() const {
|
| - return is_valid_;
|
| -}
|
| -
|
| -} // namespace webdriver
|
| -
|
| -base::Value* ValueConversionTraits<webdriver::ElementId>::CreateValueFrom(
|
| - const webdriver::ElementId& t) {
|
| - return t.ToValue();
|
| -}
|
| -
|
| -bool ValueConversionTraits<webdriver::ElementId>::SetFromValue(
|
| - const base::Value* value, webdriver::ElementId* t) {
|
| - webdriver::ElementId id(value);
|
| - if (id.is_valid())
|
| - *t = id;
|
| - return id.is_valid();
|
| -}
|
| -
|
| -bool ValueConversionTraits<webdriver::ElementId>::CanConvert(
|
| - const base::Value* value) {
|
| - webdriver::ElementId t;
|
| - return SetFromValue(value, &t);
|
| -}
|
|
|