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

Unified Diff: sky/engine/core/html/imports/HTMLImportChildClient.h

Issue 681983005: Basic implementation of <import> (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Works Created 6 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: sky/engine/core/html/imports/HTMLImportChildClient.h
diff --git a/sky/engine/core/html/imports/HTMLImportChildClient.h b/sky/engine/core/html/imports/HTMLImportChildClient.h
index d519d3ab46b0686168747924c7c2532b5e4e74f4..6ff97558e3dbe8601d5ce1b85bd7caa7b97ad691 100644
--- a/sky/engine/core/html/imports/HTMLImportChildClient.h
+++ b/sky/engine/core/html/imports/HTMLImportChildClient.h
@@ -34,7 +34,7 @@
namespace blink {
class HTMLImportChild;
-class HTMLLinkElement;
+class Element;
class HTMLImportChildClient : public DummyBase<void> {
public:
@@ -44,7 +44,7 @@ public:
virtual void importChildWasDestroyed(HTMLImportChild*) = 0;
#endif
virtual bool isSync() const = 0;
- virtual HTMLLinkElement* link() = 0;
+ virtual Element* link() = 0;
virtual void trace(Visitor*) { }
};

Powered by Google App Engine
This is Rietveld 408576698