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

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

Issue 1317533002: Sibling invalidation sets (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase Created 5 years, 3 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 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef InvalidationListData_h
6 #define InvalidationListData_h
7
8 #include "core/css/invalidation/InvalidationData.h"
9
10 namespace blink {
11
12 class CORE_EXPORT InvalidationListData final {
Timothy Loh 2015/09/10 06:09:40 could do with a better name
Eric Willigers 2015/09/14 07:20:24 Acknowledged. Renamed to InvalidationLists.
13 WTF_MAKE_NONCOPYABLE(InvalidationListData);
14 public:
15 static PassOwnPtr<InvalidationListData> create() { return adoptPtr(new Inval idationListData); }
16
17 InvalidationSetVector& descendants() { return m_invalidationList[InvalidateD escendants]; }
esprehn 2015/09/10 08:54:53 This doesn't need an array and an enum like this.
Eric Willigers 2015/09/14 07:20:23 Fixed.
18 InvalidationSetVector& siblings() { return m_invalidationList[InvalidateSibl ings]; }
19
20 private:
21 InvalidationListData() {}
22
23 InvalidationSetVector m_invalidationList[InvalidateTypeCount];
esprehn 2015/09/10 08:54:53 Please don't use an array of Vectors, this only co
Eric Willigers 2015/09/14 07:20:24 Done.
24 };
25
26 } // namespace blink
27
28 #endif // InvalidationListData_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698