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

Unified Diff: Source/core/css/parser/CSSParserObserverWrapper.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 | « no previous file | Source/core/css/parser/CSSSupportsParser.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/css/parser/CSSParserObserverWrapper.h
diff --git a/Source/core/css/parser/CSSParserObserverWrapper.h b/Source/core/css/parser/CSSParserObserverWrapper.h
index 1aff9fcdb42e4478047de7b545a31f211f87cbcd..eb1ea2244e708eab318d91fca95d897c202483a3 100644
--- a/Source/core/css/parser/CSSParserObserverWrapper.h
+++ b/Source/core/css/parser/CSSParserObserverWrapper.h
@@ -10,9 +10,10 @@
namespace blink {
class CSSParserObserverWrapper {
+ STACK_ALLOCATED();
public:
- CSSParserObserverWrapper(CSSParserObserver& observer)
- : m_observer(observer)
+ explicit CSSParserObserverWrapper(CSSParserObserver& observer)
+ : m_observer(observer)
{ }
unsigned startOffset(const CSSParserTokenRange&);
« no previous file with comments | « no previous file | Source/core/css/parser/CSSSupportsParser.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698