OLD | NEW |
(Empty) | |
| 1 {% from 'macros.tmpl' import trie_length_switch %} |
| 2 {% macro trie_return_statement(unit_name) %} |
| 3 return CSSPrimitiveValue::UnitType::{{unit_name}}; |
| 4 {% endmacro %} |
| 5 // Copyright 2016 The Chromium Authors. All rights reserved. |
| 6 // Use of this source code is governed by a BSD-style license that can be |
| 7 // found in the LICENSE file. |
| 8 |
| 9 #include "core/css/CSSPrimitiveValueUnitTrie.h" |
| 10 #include "core/css/CSSPrimitiveValue.h" |
| 11 |
| 12 namespace blink { |
| 13 |
| 14 CSSPrimitiveValue::UnitType lookupCSSPrimitiveValueUnit(const String& data, unsi
gned length) |
| 15 { |
| 16 DCHECK(data); |
| 17 DCHECK(length); |
| 18 {{trie_length_switch(empty_case_return_value, length_tries, trie_return_stat
ement, 'CSSPrimitiveValue::UnitType::Unknown')}} |
| 19 } |
| 20 |
| 21 } // namespace blink |
| 22 |
OLD | NEW |