| 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 563c70b35f832a340615b346aa06bd6ee54fe88e..37c4e69060ee1559e0cad657d3bd1cbbd92cdb0e 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;
|
| + HTMLImportTreeRoot* root() const { return m_root.get(); }
|
|
|
| bool shouldBlockScriptExecution(const Document&) const;
|
| HTMLImportChild* load(HTMLImport* parent, HTMLImportChildClient*, FetchRequest);
|
| @@ -66,8 +66,8 @@ public:
|
|
|
| HTMLImportLoader* createLoader();
|
|
|
| - size_t loaderCount() const;
|
| - HTMLImportLoader* loaderAt(size_t) const;
|
| + size_t loaderCount() const { return m_loaders.size(); }
|
| + HTMLImportLoader* loaderAt(size_t i) const { return m_loaders[i].get(); }
|
| Document* loaderDocumentAt(size_t) const;
|
| HTMLImportLoader* loaderFor(const Document&) const;
|
|
|
|
|