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

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

Issue 305723004: Make HTMLImportTreeNode own the whole import tree. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Comments addressed. Created 6 years, 7 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 | « Source/core/html/imports/HTMLImportTreeRoot.cpp ('k') | Source/core/html/imports/HTMLImportsController.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/imports/HTMLImportsController.h
diff --git a/Source/core/html/imports/HTMLImportsController.h b/Source/core/html/imports/HTMLImportsController.h
index df6114a551fb2302e44ef4247af8f3316b3fb020..9b9596d417e82b8b3da7a16bf40183b8e5a8cfaf 100644
--- a/Source/core/html/imports/HTMLImportsController.h
+++ b/Source/core/html/imports/HTMLImportsController.h
@@ -73,15 +73,12 @@ public:
LocalFrame* frame() const;
Document* master() const { return m_master; }
-
HTMLImportLoader* createLoader();
size_t loaderCount() const { return m_loaders.size(); }
HTMLImportLoader* loaderAt(size_t i) const { return m_loaders[i].get(); }
HTMLImportLoader* loaderFor(const Document&) const;
- HTMLImportChild* findLinkFor(const KURL&) const;
-
private:
HTMLImportChild* createChild(const KURL&, HTMLImportLoader*, HTMLImport* parent, HTMLImportChildClient*);
void clear();
@@ -90,10 +87,6 @@ private:
OwnPtr<HTMLImportTreeRoot> m_root;
- // List of import which has been loaded or being loaded.
- typedef Vector<OwnPtr<HTMLImportChild> > ImportList;
- ImportList m_imports;
-
typedef Vector<OwnPtr<HTMLImportLoader> > LoaderList;
LoaderList m_loaders;
};
« no previous file with comments | « Source/core/html/imports/HTMLImportTreeRoot.cpp ('k') | Source/core/html/imports/HTMLImportsController.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698