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

Unified Diff: third_party/WebKit/Source/core/dom/custom/CustomElementReaction.h

Issue 2023093003: Upgrade in-document custom elements when an element is defined. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addresses feedback. Created 4 years, 7 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/custom/CustomElementReaction.h
diff --git a/third_party/WebKit/Source/core/dom/custom/CustomElementReaction.h b/third_party/WebKit/Source/core/dom/custom/CustomElementReaction.h
index 3ee1ab254ab26a4bd846871539b9b1036ff03731..68f5e6965b30f89012b715fe796a85aceb1b18e5 100644
--- a/third_party/WebKit/Source/core/dom/custom/CustomElementReaction.h
+++ b/third_party/WebKit/Source/core/dom/custom/CustomElementReaction.h
@@ -7,7 +7,6 @@
#include "core/CoreExport.h"
#include "platform/heap/Handle.h"
-#include "wtf/Noncopyable.h"
namespace blink {
@@ -15,7 +14,7 @@ class Element;
class CORE_EXPORT CustomElementReaction
: public GarbageCollectedFinalized<CustomElementReaction> {
- WTF_MAKE_NONCOPYABLE(CustomElementReaction);
+ DISALLOW_COPY_AND_ASSIGN(CustomElementReaction);
yosin_UTC9 2016/06/02 02:02:18 Sorry for confusion. Oops, usually DISALLOW_COPY_
public:
CustomElementReaction() { }
virtual ~CustomElementReaction() { }

Powered by Google App Engine
This is Rietveld 408576698