Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(33)

Unified Diff: third_party/WebKit/Source/build/scripts/templates/CSSPrimitiveValueUnitTrie.cpp.tmpl

Issue 2329463004: ABANDONED CL: Changes needed to make things compile after running rewrite_to_chrome_style tool. (Closed)
Patch Set: More fixes - things build fine at this point. Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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 108509aced5c0de0aafb5931a9495dec7a2e3a63..61c62cd853106be8318c35474098976be2771481 100644
--- a/third_party/WebKit/Source/build/scripts/templates/CSSPrimitiveValueUnitTrie.cpp.tmpl
+++ b/third_party/WebKit/Source/build/scripts/templates/CSSPrimitiveValueUnitTrie.cpp.tmpl
@@ -16,17 +16,17 @@ CSSPrimitiveValue::UnitType cssPrimitiveValueUnitFromTrie(
DCHECK(length);
{% macro trie_return_statement(unit_name) %}CSSPrimitiveValue::UnitType::{{unit_name}}{% endmacro %}
{{ trie_length_switch(length_tries, trie_return_statement, True) | indent(4) }}
- return CSSPrimitiveValue::UnitType::Unknown;
+ return CSSPrimitiveValue::UnitType::kUnknown;
}
} // namespace
-CSSPrimitiveValue::UnitType CSSPrimitiveValue::stringToUnitType(
+CSSPrimitiveValue::UnitType CSSPrimitiveValue::StringToUnitType(
const LChar* characters8, unsigned length) {
return cssPrimitiveValueUnitFromTrie(characters8, length);
}
-CSSPrimitiveValue::UnitType CSSPrimitiveValue::stringToUnitType(
+CSSPrimitiveValue::UnitType CSSPrimitiveValue::StringToUnitType(
const UChar* characters16, unsigned length) {
return cssPrimitiveValueUnitFromTrie(characters16, length);
}

Powered by Google App Engine
This is Rietveld 408576698