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

Side by Side Diff: Source/core/css/invalidation/StyleInvalidator.h

Issue 993713002: Fix template angle bracket syntax in CSS subdirs (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 9 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
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 #ifndef StyleInvalidator_h 5 #ifndef StyleInvalidator_h
6 #define StyleInvalidator_h 6 #define StyleInvalidator_h
7 7
8 #include "platform/heap/Handle.h" 8 #include "platform/heap/Handle.h"
9 9
10 namespace blink { 10 namespace blink {
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
80 80
81 private: 81 private:
82 int m_prevInvalidationSetsSize; 82 int m_prevInvalidationSetsSize;
83 bool m_prevInvalidateCustomPseudo; 83 bool m_prevInvalidateCustomPseudo;
84 bool m_prevWholeSubtreeInvalid; 84 bool m_prevWholeSubtreeInvalid;
85 bool m_treeBoundaryCrossing; 85 bool m_treeBoundaryCrossing;
86 bool m_insertionPointCrossing; 86 bool m_insertionPointCrossing;
87 RecursionData* m_data; 87 RecursionData* m_data;
88 }; 88 };
89 89
90 typedef WillBeHeapVector<RefPtrWillBeMember<DescendantInvalidationSet> > Inv alidationList; 90 typedef WillBeHeapVector<RefPtrWillBeMember<DescendantInvalidationSet>> Inva lidationList;
91 typedef WillBeHeapHashMap<RawPtrWillBeMember<Element>, OwnPtrWillBeMember<In validationList> > PendingInvalidationMap; 91 typedef WillBeHeapHashMap<RawPtrWillBeMember<Element>, OwnPtrWillBeMember<In validationList>> PendingInvalidationMap;
92 92
93 InvalidationList& ensurePendingInvalidationList(Element&); 93 InvalidationList& ensurePendingInvalidationList(Element&);
94 94
95 PendingInvalidationMap m_pendingInvalidationMap; 95 PendingInvalidationMap m_pendingInvalidationMap;
96 }; 96 };
97 97
98 } // namespace blink 98 } // namespace blink
99 99
100 #endif // StyleInvalidator_h 100 #endif // StyleInvalidator_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698