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

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

Issue 298413004: Remove the importedDocument functions from HTML imports classes. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: 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/HTMLImportChild.cpp ('k') | Source/core/html/imports/HTMLImportLoader.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/imports/HTMLImportLoader.h
diff --git a/Source/core/html/imports/HTMLImportLoader.h b/Source/core/html/imports/HTMLImportLoader.h
index e316754d6c9942b6f8fff8ee64857fc9ab084e7e..ac98eb3b8ccd3bcab6ae1ebbe2471e0478d71479 100644
--- a/Source/core/html/imports/HTMLImportLoader.h
+++ b/Source/core/html/imports/HTMLImportLoader.h
@@ -69,8 +69,7 @@ public:
virtual ~HTMLImportLoader();
- Document* document() const { return m_importedDocument.get(); }
- Document* importedDocument() const;
+ Document* document() const { return m_document.get(); }
void addImport(HTMLImportChild*);
void removeImport(HTMLImportChild*);
void moveToFirst(HTMLImportChild*);
@@ -109,7 +108,7 @@ private:
HTMLImportsController* m_controller;
Vector<HTMLImportChild*> m_imports;
State m_state;
- RefPtr<Document> m_importedDocument;
+ RefPtr<Document> m_document;
RefPtr<DocumentWriter> m_writer;
RefPtr<CustomElementMicrotaskQueue> m_microtaskQueue;
};
« no previous file with comments | « Source/core/html/imports/HTMLImportChild.cpp ('k') | Source/core/html/imports/HTMLImportLoader.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698