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

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

Issue 2367663002: [WIP] Attempt to move everything cssom into a cssom namespace (Closed)
Patch Set: Created 4 years, 2 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
« no previous file with comments | « no previous file | third_party/WebKit/Source/build/scripts/templates/CSSOMTypes.cpp.tmpl » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "core/css/cssom/CSSOMKeywords.h" 5 #include "core/css/cssom/CSSOMKeywords.h"
6 6
7 #include "core/css/CSSPropertyIDTemplates.h" 7 #include "core/css/CSSPropertyIDTemplates.h"
8 #include "core/css/cssom/CSSKeywordValue.h" 8 #include "core/css/cssom/CSSKeywordValue.h"
9 #include "wtf/HashMap.h" 9 #include "wtf/HashMap.h"
10 10
11 namespace blink { 11 namespace blink {
12 namespace cssom {
12 13
13 namespace { 14 namespace {
14 15
15 using KeywordTable = HashMap<CSSPropertyID, Vector<CSSValueID>>; 16 using KeywordTable = HashMap<CSSPropertyID, Vector<CSSValueID>>;
16 17
17 KeywordTable createKeywordTable() 18 KeywordTable createKeywordTable()
18 { 19 {
19 KeywordTable table; 20 KeywordTable table;
20 21
21 {% for property_id, property in properties.items() if property.keywordIDs %} 22 {% for property_id, property in properties.items() if property.keywordIDs %}
(...skipping 29 matching lines...) Expand all
51 } 52 }
52 53
53 const KeywordTable::iterator tableIterator = keywordTable().find(id); 54 const KeywordTable::iterator tableIterator = keywordTable().find(id);
54 if (tableIterator == keywordTable().end()) { 55 if (tableIterator == keywordTable().end()) {
55 return false; 56 return false;
56 } 57 }
57 58
58 return tableIterator->value.contains(valueID); 59 return tableIterator->value.contains(valueID);
59 } 60 }
60 61
62 } // namespace cssom
61 } // namespace blink 63 } // namespace blink
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/Source/build/scripts/templates/CSSOMTypes.cpp.tmpl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698