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

Unified Diff: Source/core/css/StyleInvalidationAnalysis.h

Issue 180003002: Consistently use on-heap collections for StyleRuleBase descendants. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: addressed reviewers comments Created 6 years, 10 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
Index: Source/core/css/StyleInvalidationAnalysis.h
diff --git a/Source/core/css/StyleInvalidationAnalysis.h b/Source/core/css/StyleInvalidationAnalysis.h
index 79cf3d87bdae0e51f02d8cd87d7b787272b9ebd2..3f93d440e6269e288969a99a33a1f02935fb736f 100644
--- a/Source/core/css/StyleInvalidationAnalysis.h
+++ b/Source/core/css/StyleInvalidationAnalysis.h
@@ -26,6 +26,7 @@
#ifndef StyleInvalidationAnalysis_h
#define StyleInvalidationAnalysis_h
+#include "heap/Handle.h"
#include "wtf/HashSet.h"
#include "wtf/Vector.h"
#include "wtf/text/StringImpl.h"
@@ -38,7 +39,7 @@ class StyleSheetContents;
class StyleInvalidationAnalysis {
public:
- StyleInvalidationAnalysis(const Vector<StyleSheetContents*>&);
+ StyleInvalidationAnalysis(const WillBeHeapVector<RawPtrWillBeMember<StyleSheetContents> >&);
bool dirtiesAllStyle() const { return m_dirtiesAllStyle; }
void invalidateStyle(Document&);

Powered by Google App Engine
This is Rietveld 408576698