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

Unified Diff: Source/core/css/resolver/SharedStyleFinder.h

Issue 1278103002: Oilpan: tidy up some inter-stack object references. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 4 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/resolver/SharedStyleFinder.h
diff --git a/Source/core/css/resolver/SharedStyleFinder.h b/Source/core/css/resolver/SharedStyleFinder.h
index 3f4158642cf181e5dc3e991924ea17928a28e506..475c8dcd3564121c4f06f74970e87e378079e75e 100644
--- a/Source/core/css/resolver/SharedStyleFinder.h
+++ b/Source/core/css/resolver/SharedStyleFinder.h
@@ -46,7 +46,7 @@ public:
, m_features(features)
, m_siblingRuleSet(siblingRuleSet)
, m_uncommonAttributeRuleSet(uncommonAttributeRuleSet)
- , m_styleResolver(styleResolver)
+ , m_styleResolver(&styleResolver)
, m_context(context)
{ }
@@ -74,7 +74,7 @@ private:
const RuleFeatureSet& m_features;
RawPtrWillBeMember<RuleSet> m_siblingRuleSet;
RawPtrWillBeMember<RuleSet> m_uncommonAttributeRuleSet;
- StyleResolver& m_styleResolver;
+ RawPtrWillBeMember<StyleResolver> m_styleResolver;
const ElementResolveContext& m_context;
};

Powered by Google App Engine
This is Rietveld 408576698