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

Unified Diff: third_party/WebKit/Source/core/dom/Element.h

Issue 2170383002: CustomElements: adopt node (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: layout test went from bad to good, deleting failure expectation Created 4 years, 4 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
Index: third_party/WebKit/Source/core/dom/Element.h
diff --git a/third_party/WebKit/Source/core/dom/Element.h b/third_party/WebKit/Source/core/dom/Element.h
index ed11b8316bf79cb336dab9cc06d8cd91495bf4d6..e9c35c605dc194f1eb424474b1fbbfa673f3df15 100644
--- a/third_party/WebKit/Source/core/dom/Element.h
+++ b/third_party/WebKit/Source/core/dom/Element.h
@@ -50,6 +50,7 @@ class ClientRect;
class ClientRectList;
class CompositorMutation;
class V0CustomElementDefinition;
dominicc (has gone to gerrit) 2016/08/03 07:56:56 Whoever changed this one forgot to keep them in al
+class CustomElementDefinition;
class DOMStringMap;
class DOMTokenList;
class Dictionary;
@@ -517,8 +518,11 @@ public:
void clearHasPendingResources() { clearElementFlag(HasPendingResources); }
virtual void buildPendingResource() { }
- void setCustomElementDefinition(V0CustomElementDefinition*);
- V0CustomElementDefinition* customElementDefinition() const;
+ void v0setCustomElementDefinition(V0CustomElementDefinition*);
+ V0CustomElementDefinition* v0customElementDefinition() const;
+
+ void setCustomElementDefinition(CustomElementDefinition*);
+ CustomElementDefinition* customElementDefinition() const;
bool containsFullScreenElement() const { return hasElementFlag(ContainsFullScreenElement); }
void setContainsFullScreenElement(bool);

Powered by Google App Engine
This is Rietveld 408576698