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

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

Issue 1455943002: [Oilpan] Prepare full definition of classes before using Member (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: CORE_EXPORT Created 5 years, 1 month 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: third_party/WebKit/Source/core/html/imports/HTMLImportsController.h
diff --git a/third_party/WebKit/Source/core/html/imports/HTMLImportsController.h b/third_party/WebKit/Source/core/html/imports/HTMLImportsController.h
index 37c4e69060ee1559e0cad657d3bd1cbbd92cdb0e..563c70b35f832a340615b346aa06bd6ee54fe88e 100644
--- a/third_party/WebKit/Source/core/html/imports/HTMLImportsController.h
+++ b/third_party/WebKit/Source/core/html/imports/HTMLImportsController.h
@@ -57,7 +57,7 @@ public:
explicit HTMLImportsController(Document&);
virtual ~HTMLImportsController();
- HTMLImportTreeRoot* root() const { return m_root.get(); }
+ HTMLImportTreeRoot* root() const;
bool shouldBlockScriptExecution(const Document&) const;
HTMLImportChild* load(HTMLImport* parent, HTMLImportChildClient*, FetchRequest);
@@ -66,8 +66,8 @@ public:
HTMLImportLoader* createLoader();
- size_t loaderCount() const { return m_loaders.size(); }
- HTMLImportLoader* loaderAt(size_t i) const { return m_loaders[i].get(); }
+ size_t loaderCount() const;
+ HTMLImportLoader* loaderAt(size_t) const;
Document* loaderDocumentAt(size_t) const;
HTMLImportLoader* loaderFor(const Document&) const;

Powered by Google App Engine
This is Rietveld 408576698