| Index: third_party/WebKit/Source/build/scripts/templates/StyleBuilderFunctions.cpp.tmpl
|
| diff --git a/third_party/WebKit/Source/build/scripts/templates/StyleBuilderFunctions.cpp.tmpl b/third_party/WebKit/Source/build/scripts/templates/StyleBuilderFunctions.cpp.tmpl
|
| index 9c221e81b11e61aeb356a20d4c4cce4f9c1ff0b7..497f159c7b764bfb73069c5713f1f9c754ee7343 100644
|
| --- a/third_party/WebKit/Source/build/scripts/templates/StyleBuilderFunctions.cpp.tmpl
|
| +++ b/third_party/WebKit/Source/build/scripts/templates/StyleBuilderFunctions.cpp.tmpl
|
| @@ -13,7 +13,7 @@
|
| #include "core/css/BasicShapeFunctions.h"
|
| #include "core/css/CSSContentDistributionValue.h"
|
| #include "core/css/CSSPrimitiveValueMappings.h"
|
| -#include "core/css/CSSStringValueBase.h"
|
| +#include "core/css/CSSStringValues.h"
|
| #include "core/css/CSSValuePair.h"
|
| #include "core/css/resolver/StyleResolverState.h"
|
|
|
| @@ -348,7 +348,7 @@ static bool borderImageLengthMatchesAllSides(const BorderImageLengthBox& borderI
|
| int length = list ? list->length() : 0;
|
| for (int i = 0; i < length; ++i) {
|
| const CSSValuePair* pair = toCSSValuePair(list->item(i));
|
| - AtomicString identifier(toCSSCustomIdentValue(pair->first()).value());
|
| + AtomicString identifier(toCSSCustomIdentValue(pair->first()).string());
|
| int value = toCSSPrimitiveValue(pair->second()).getIntValue();
|
| CounterDirectives& directives = map.add(identifier, CounterDirectives()).storedValue->value;
|
| {% if action == 'Reset' %}
|
|
|