| Index: third_party/WebKit/Source/modules/accessibility/InspectorTypeBuilderHelper.cpp
|
| diff --git a/third_party/WebKit/Source/modules/accessibility/InspectorTypeBuilderHelper.cpp b/third_party/WebKit/Source/modules/accessibility/InspectorTypeBuilderHelper.cpp
|
| index 0b6f781d5b3af175531b0200f6faa3bff4cff70c..994fb33b8c84250fbbdbff8276c62cad7075c6b9 100644
|
| --- a/third_party/WebKit/Source/modules/accessibility/InspectorTypeBuilderHelper.cpp
|
| +++ b/third_party/WebKit/Source/modules/accessibility/InspectorTypeBuilderHelper.cpp
|
| @@ -72,28 +72,28 @@ std::unique_ptr<AXProperty> createProperty(IgnoredReason reason) {
|
| std::unique_ptr<AXValue> createValue(const String& value, const String& type) {
|
| return AXValue::create()
|
| .setType(type)
|
| - .setValue(protocol::ValueConversions<String>::serialize(value))
|
| + .setValue(protocol::ValueConversions<String>::toValue(value))
|
| .build();
|
| }
|
|
|
| std::unique_ptr<AXValue> createValue(int value, const String& type) {
|
| return AXValue::create()
|
| .setType(type)
|
| - .setValue(protocol::ValueConversions<int>::serialize(value))
|
| + .setValue(protocol::ValueConversions<int>::toValue(value))
|
| .build();
|
| }
|
|
|
| std::unique_ptr<AXValue> createValue(float value, const String& type) {
|
| return AXValue::create()
|
| .setType(type)
|
| - .setValue(protocol::ValueConversions<double>::serialize(value))
|
| + .setValue(protocol::ValueConversions<double>::toValue(value))
|
| .build();
|
| }
|
|
|
| std::unique_ptr<AXValue> createBooleanValue(bool value, const String& type) {
|
| return AXValue::create()
|
| .setType(type)
|
| - .setValue(protocol::ValueConversions<bool>::serialize(value))
|
| + .setValue(protocol::ValueConversions<bool>::toValue(value))
|
| .build();
|
| }
|
|
|
|
|