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

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

Issue 17419007: [HTML Imports] Implement sub-imports processing. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Updated to ToT. Created 7 years, 6 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
« no previous file with comments | « LayoutTests/fast/html/imports/sub-imports-loop-expected.txt ('k') | Source/core/dom/Document.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/dom/Document.h
diff --git a/Source/core/dom/Document.h b/Source/core/dom/Document.h
index bcc7a0a21c87f8c19372b0d9b196171dbe239f84..a199ab0605daf3ddc5d6a0799bf9c4e7bf7d177c 100644
--- a/Source/core/dom/Document.h
+++ b/Source/core/dom/Document.h
@@ -1027,7 +1027,7 @@ public:
CustomElementRegistry* registry() const { return m_registry.get(); }
CustomElementRegistry* ensureCustomElementRegistry();
- HTMLImportsController* ensureImports();
+ void setImports(PassRefPtr<HTMLImportsController>);
HTMLImportsController* imports() const { return m_imports.get(); }
bool haveImportsLoaded() const;
void didLoadAllImports();
@@ -1371,7 +1371,7 @@ private:
OwnPtr<TextAutosizer> m_textAutosizer;
RefPtr<CustomElementRegistry> m_registry;
- OwnPtr<HTMLImportsController> m_imports;
+ RefPtr<HTMLImportsController> m_imports;
bool m_scheduledTasksAreSuspended;
« no previous file with comments | « LayoutTests/fast/html/imports/sub-imports-loop-expected.txt ('k') | Source/core/dom/Document.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698