| Index: third_party/WebKit/Source/build/scripts/templates/CSSPrimitiveValueUnitTrie.cpp.tmpl
|
| diff --git a/third_party/WebKit/Source/build/scripts/templates/CSSPrimitiveValueUnitTrie.cpp.tmpl b/third_party/WebKit/Source/build/scripts/templates/CSSPrimitiveValueUnitTrie.cpp.tmpl
|
| index 3b34842ec19bdc2ef119614d5b1a431d54b45453..b1b08799fea208b9ceb6bd1671e31c17fbe38f09 100644
|
| --- a/third_party/WebKit/Source/build/scripts/templates/CSSPrimitiveValueUnitTrie.cpp.tmpl
|
| +++ b/third_party/WebKit/Source/build/scripts/templates/CSSPrimitiveValueUnitTrie.cpp.tmpl
|
| @@ -3,7 +3,7 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| -#include "core/css/CSSPrimitiveValueUnitTrie.h"
|
| +#include "core/css/CSSPrimitiveValue.h"
|
|
|
| namespace blink {
|
|
|
| @@ -21,12 +21,12 @@ CSSPrimitiveValue::UnitType cssPrimitiveValueUnitFromTrie(const CharacterType* d
|
|
|
| } // namespace
|
|
|
| -CSSPrimitiveValue::UnitType lookupCSSPrimitiveValueUnit(const LChar* characters8, unsigned length)
|
| +CSSPrimitiveValue::UnitType CSSPrimitiveValue::stringToUnitType(const LChar* characters8, unsigned length)
|
| {
|
| return cssPrimitiveValueUnitFromTrie(characters8, length);
|
| }
|
|
|
| -CSSPrimitiveValue::UnitType lookupCSSPrimitiveValueUnit(const UChar* characters16, unsigned length)
|
| +CSSPrimitiveValue::UnitType CSSPrimitiveValue::stringToUnitType(const UChar* characters16, unsigned length)
|
| {
|
| return cssPrimitiveValueUnitFromTrie(characters16, length);
|
| }
|
|
|