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

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: patch update 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..2ee3878ade8d7486c5daf15b69b4fe0a05427af6 100644
--- a/third_party/WebKit/Source/core/dom/Element.h
+++ b/third_party/WebKit/Source/core/dom/Element.h
@@ -49,7 +49,7 @@ class CSSStyleDeclaration;
class ClientRect;
class ClientRectList;
class CompositorMutation;
-class V0CustomElementDefinition;
+class CustomElementDefinition;
class DOMStringMap;
class DOMTokenList;
class Dictionary;
@@ -72,6 +72,7 @@ class ShadowRoot;
class ShadowRootInit;
class StylePropertySet;
class StylePropertyMap;
+class V0CustomElementDefinition;
enum SpellcheckAttributeState {
SpellcheckAttributeTrue,
@@ -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