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

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: use STACK_ALLOCATED() more often 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
« no previous file with comments | « Source/core/css/resolver/FontBuilder.cpp ('k') | Source/core/css/resolver/SharedStyleFinder.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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;
};
« no previous file with comments | « Source/core/css/resolver/FontBuilder.cpp ('k') | Source/core/css/resolver/SharedStyleFinder.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698