| 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;
|
| };
|
|
|