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

Unified Diff: Source/core/dom/Document.h

Issue 18467003: Refactoring: Introduce HTMLImport interface to form import tree. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 5 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/dom/Document.h
diff --git a/Source/core/dom/Document.h b/Source/core/dom/Document.h
index cb4d0b6729c976483468a7331e8f5defc0fc4469..0bb0f738ed8946865969adf50b53b00d62af9c7d 100644
--- a/Source/core/dom/Document.h
+++ b/Source/core/dom/Document.h
@@ -102,7 +102,7 @@ class HTMLDocument;
class HTMLElement;
class HTMLFrameOwnerElement;
class HTMLHeadElement;
-class HTMLImportsController;
+class HTMLImport;
class HTMLIFrameElement;
class HTMLMapElement;
class HTMLNameCollection;
@@ -988,8 +988,8 @@ public:
CustomElementRegistry* registry() const { return m_registry.get(); }
CustomElementRegistry* ensureCustomElementRegistry();
- void setImports(PassRefPtr<HTMLImportsController>);
- HTMLImportsController* imports() const { return m_imports.get(); }
+ void setImports(HTMLImport*);
+ HTMLImport* imports() const { return m_imports; }
bool haveImportsLoaded() const;
void didLoadAllImports();
@@ -1320,7 +1320,7 @@ private:
OwnPtr<TextAutosizer> m_textAutosizer;
RefPtr<CustomElementRegistry> m_registry;
- RefPtr<HTMLImportsController> m_imports;
+ HTMLImport* m_imports;
bool m_scheduledTasksAreSuspended;

Powered by Google App Engine
This is Rietveld 408576698