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

Unified Diff: Source/core/css/parser/CSSSupportsParser.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/parser/CSSSupportsParser.h
diff --git a/Source/core/css/parser/CSSSupportsParser.h b/Source/core/css/parser/CSSSupportsParser.h
index 4309c04ce7fd6c59cc6f3923698ee5583880a156..cd8846f2e336328921e3ea471385d647476e5fed 100644
--- a/Source/core/css/parser/CSSSupportsParser.h
+++ b/Source/core/css/parser/CSSSupportsParser.h
@@ -5,12 +5,15 @@
#ifndef CSSSupportsParser_h
#define CSSSupportsParser_h
+#include "platform/heap/Handle.h"
+
namespace blink {
class CSSParserImpl;
class CSSParserTokenRange;
class CSSSupportsParser {
+ STACK_ALLOCATED();
public:
enum SupportsResult {
Unsupported = false,
@@ -28,6 +31,9 @@ private:
SupportsResult consumeConditionInParenthesis(CSSParserTokenRange&);
+ // Oilpan: CSSParserImpl is stack allocated and stack scanning will
+ // separately locate it.
+ GC_PLUGIN_IGNORE("509911")
CSSParserImpl& m_parser;
};

Powered by Google App Engine
This is Rietveld 408576698