| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "config.h" | 5 #include "sky/engine/config.h" |
| 6 #include "core/html/HTMLImportElement.h" | 6 #include "sky/engine/core/html/HTMLImportElement.h" |
| 7 | 7 |
| 8 #include "core/dom/Document.h" | |
| 9 #include "core/fetch/FetchRequest.h" | |
| 10 #include "core/html/imports/HTMLImportsController.h" | |
| 11 #include "core/html/imports/HTMLImportChild.h" | |
| 12 #include "core/events/Event.h" | |
| 13 #include "gen/sky/core/EventTypeNames.h" | 8 #include "gen/sky/core/EventTypeNames.h" |
| 9 #include "sky/engine/core/dom/Document.h" |
| 10 #include "sky/engine/core/events/Event.h" |
| 11 #include "sky/engine/core/fetch/FetchRequest.h" |
| 12 #include "sky/engine/core/html/imports/HTMLImportChild.h" |
| 13 #include "sky/engine/core/html/imports/HTMLImportsController.h" |
| 14 | 14 |
| 15 namespace blink { | 15 namespace blink { |
| 16 | 16 |
| 17 HTMLImportElement::HTMLImportElement(Document& document) | 17 HTMLImportElement::HTMLImportElement(Document& document) |
| 18 : HTMLElement(HTMLNames::importTag, document) | 18 : HTMLElement(HTMLNames::importTag, document) |
| 19 , m_child(nullptr) | 19 , m_child(nullptr) |
| 20 { | 20 { |
| 21 } | 21 } |
| 22 | 22 |
| 23 HTMLImportElement::~HTMLImportElement() | 23 HTMLImportElement::~HTMLImportElement() |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 76 { | 76 { |
| 77 return true; | 77 return true; |
| 78 } | 78 } |
| 79 | 79 |
| 80 Element* HTMLImportElement::link() | 80 Element* HTMLImportElement::link() |
| 81 { | 81 { |
| 82 return this; | 82 return this; |
| 83 } | 83 } |
| 84 | 84 |
| 85 } | 85 } |
| OLD | NEW |