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

Unified Diff: third_party/WebKit/Source/core/css/invalidation/StyleInvalidator.h

Issue 2057093002: Removed unnecessary mutable in SiblingData. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/css/invalidation/StyleInvalidator.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/css/invalidation/StyleInvalidator.h
diff --git a/third_party/WebKit/Source/core/css/invalidation/StyleInvalidator.h b/third_party/WebKit/Source/core/css/invalidation/StyleInvalidator.h
index 150f8a860682d54145191bdc3357a9cf1c055c83..11231582cc99fba763ce415cb98a8861e65a4364 100644
--- a/third_party/WebKit/Source/core/css/invalidation/StyleInvalidator.h
+++ b/third_party/WebKit/Source/core/css/invalidation/StyleInvalidator.h
@@ -69,7 +69,7 @@ private:
{ }
void pushInvalidationSet(const SiblingInvalidationSet&);
- bool matchCurrentInvalidationSets(Element&, RecursionData&) const;
+ bool matchCurrentInvalidationSets(Element&, RecursionData&);
bool isEmpty() const { return m_invalidationEntries.isEmpty(); }
void advance() { m_elementIndex++; }
@@ -86,7 +86,7 @@ private:
unsigned m_invalidationLimit;
};
- mutable Vector<Entry, 16> m_invalidationEntries;
+ Vector<Entry, 16> m_invalidationEntries;
unsigned m_elementIndex;
};
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/css/invalidation/StyleInvalidator.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698