blob: bd0d03747efa59efc6f3a04973595e4dcac993e8 [file] [log] [blame]
// Copyright 2015 The Cobalt Authors. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
#include <memory>
#include "cobalt/webdriver/protocol/element_id.h"
namespace cobalt {
namespace webdriver {
namespace protocol {
const char ElementId::kElementKey[] = "ELEMENT";
std::unique_ptr<base::Value> ElementId::ToValue(const ElementId& element_id) {
std::unique_ptr<base::DictionaryValue> element_object(
new base::DictionaryValue());
element_object->SetString(kElementKey, element_id.id_);
return std::unique_ptr<base::Value>(element_object.release());
}
base::Optional<ElementId> ElementId::FromValue(const base::Value* value) {
const base::DictionaryValue* dictionary_value;
if (!value->GetAsDictionary(&dictionary_value)) {
return base::nullopt;
}
std::string element_id;
if (!dictionary_value->GetString(kElementKey, &element_id)) {
return base::nullopt;
}
return ElementId(element_id);
}
} // namespace protocol
} // namespace webdriver
} // namespace cobalt