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

Unified Diff: Source/core/html/imports/HTMLImportChild.h

Issue 235113002: Oilpan: Remove guardRef and guardDeref from TreeScope. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 8 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/html/imports/HTMLImportChild.h
diff --git a/Source/core/html/imports/HTMLImportChild.h b/Source/core/html/imports/HTMLImportChild.h
index 50c74f46d4ac8fc051d7479cc1046bc05f464833..633114f41e57c3d74afc72dde5f26e32d58324c4 100644
--- a/Source/core/html/imports/HTMLImportChild.h
+++ b/Source/core/html/imports/HTMLImportChild.h
@@ -34,6 +34,7 @@
#include "core/fetch/RawResource.h"
#include "core/fetch/ResourceOwner.h"
#include "core/html/imports/HTMLImport.h"
+#include "heap/Handle.h"
#include "platform/weborigin/KURL.h"
#include "wtf/Vector.h"
@@ -98,7 +99,11 @@ private:
void shareLoader(HTMLImportChild*);
void ensureLoader();
+#if ENABLE(OILPAN)
+ Persistent<Document> m_master;
+#else
Document& m_master;
+#endif
KURL m_url;
CustomElementMicrotaskImportStep* m_customElementMicrotaskStep;
HTMLImportLoader* m_loader;

Powered by Google App Engine
This is Rietveld 408576698