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

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

Issue 1938343002: Generate a series of nested switch statements to parse CSSPrimitiveValue units. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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 unified diff | Download patch
OLDNEW
(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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698