| Index: Source/core/html/imports/HTMLImportChild.h
|
| diff --git a/Source/core/html/imports/HTMLImportChild.h b/Source/core/html/imports/HTMLImportChild.h
|
| index f87d9feebf0dd9299160db02459aece60cd77f53..2460e5fa7d6cecd03897c221cd5106bc394cd4a7 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 "platform/heap/Handle.h"
|
| #include "platform/weborigin/KURL.h"
|
| #include "wtf/Vector.h"
|
|
|
| @@ -96,7 +97,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;
|
|
|