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

Unified Diff: Source/core/dom/custom/CustomElementDefinition.h

Issue 25777002: Move custom element code to core/dom/custom/ (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 2 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: Source/core/dom/custom/CustomElementDefinition.h
diff --git a/Source/core/dom/CustomElementDefinition.h b/Source/core/dom/custom/CustomElementDefinition.h
similarity index 93%
rename from Source/core/dom/CustomElementDefinition.h
rename to Source/core/dom/custom/CustomElementDefinition.h
index 96aa3dcbde718f53fb45ea90af0281a861cc50cc..601f671a148640fcbd75fafb7c3d95564da42b3a 100644
--- a/Source/core/dom/CustomElementDefinition.h
+++ b/Source/core/dom/custom/CustomElementDefinition.h
@@ -31,8 +31,8 @@
#ifndef CustomElementDefinition_h
#define CustomElementDefinition_h
-#include "core/dom/CustomElementDescriptor.h"
-#include "core/dom/CustomElementLifecycleCallbacks.h"
+#include "core/dom/custom/CustomElementDescriptor.h"
+#include "core/dom/custom/CustomElementLifecycleCallbacks.h"
#include "wtf/Forward.h"
#include "wtf/PassRefPtr.h"
#include "wtf/RefCounted.h"
@@ -43,7 +43,7 @@ class CustomElementDefinition : public RefCounted<CustomElementDefinition> {
public:
static PassRefPtr<CustomElementDefinition> create(const CustomElementDescriptor&, PassRefPtr<CustomElementLifecycleCallbacks>);
- virtual ~CustomElementDefinition() {}
+ virtual ~CustomElementDefinition() { }
const CustomElementDescriptor& descriptor() const { return m_descriptor; }
CustomElementLifecycleCallbacks* callbacks() const { return m_callbacks.get(); }
« no previous file with comments | « Source/core/dom/custom/CustomElementCallbackScheduler.cpp ('k') | Source/core/dom/custom/CustomElementDefinition.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698