Index: Source/core/html/imports/HTMLImportStateResolver.h |
diff --git a/Source/core/html/imports/HTMLImportStateResolver.h b/Source/core/html/imports/HTMLImportStateResolver.h |
index 5f1747e3435b4b77a68f506a30a91a8f787e4a9a..62fb54ce72dd5b7594a486b29c82cb0387392804 100644 |
--- a/Source/core/html/imports/HTMLImportStateResolver.h |
+++ b/Source/core/html/imports/HTMLImportStateResolver.h |
@@ -32,16 +32,19 @@ |
#define HTMLImportStateResolver_h |
#include "core/html/imports/HTMLImportState.h" |
+#include "platform/heap/Handle.h" |
namespace blink { |
class HTMLImport; |
class HTMLImportStateResolver { |
+ STACK_ALLOCATED(); |
public: |
explicit HTMLImportStateResolver(HTMLImport* import) |
: m_import(import) |
- { } |
+ { |
+ } |
HTMLImportState resolve() const; |
@@ -51,7 +54,7 @@ private: |
bool shouldBlockScriptExecution() const; |
bool isActive() const; |
- HTMLImport* m_import; |
+ RawPtrWillBeMember<HTMLImport> m_import; |
}; |
} |