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

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

Issue 1914923002: Rename all existing custom element classes as V0 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: CustomElementV0 -> V0CustomElement Created 4 years, 8 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/V0CustomElementLifecycleCallbacks.h
diff --git a/third_party/WebKit/Source/core/dom/custom/CustomElementLifecycleCallbacks.h b/third_party/WebKit/Source/core/dom/custom/V0CustomElementLifecycleCallbacks.h
similarity index 85%
rename from third_party/WebKit/Source/core/dom/custom/CustomElementLifecycleCallbacks.h
rename to third_party/WebKit/Source/core/dom/custom/V0CustomElementLifecycleCallbacks.h
index 195d0f8224ca48703ce5490acccfe6f9350ff9b1..2b1e584aafc13b2075e85ec8afa985dc784698f6 100644
--- a/third_party/WebKit/Source/core/dom/custom/CustomElementLifecycleCallbacks.h
+++ b/third_party/WebKit/Source/core/dom/custom/V0CustomElementLifecycleCallbacks.h
@@ -28,8 +28,8 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-#ifndef CustomElementLifecycleCallbacks_h
-#define CustomElementLifecycleCallbacks_h
+#ifndef V0CustomElementLifecycleCallbacks_h
+#define V0CustomElementLifecycleCallbacks_h
#include "platform/heap/Handle.h"
#include "wtf/text/AtomicString.h"
@@ -38,9 +38,9 @@ namespace blink {
class Element;
-class CustomElementLifecycleCallbacks : public GarbageCollectedFinalized<CustomElementLifecycleCallbacks> {
+class V0CustomElementLifecycleCallbacks : public GarbageCollectedFinalized<V0CustomElementLifecycleCallbacks> {
public:
- virtual ~CustomElementLifecycleCallbacks() { }
+ virtual ~V0CustomElementLifecycleCallbacks() { }
enum CallbackType {
None = 0,
@@ -60,7 +60,7 @@ public:
DEFINE_INLINE_VIRTUAL_TRACE() { }
protected:
- explicit CustomElementLifecycleCallbacks(CallbackType type) : m_callbackType(type) { }
+ explicit V0CustomElementLifecycleCallbacks(CallbackType type) : m_callbackType(type) { }
private:
CallbackType m_callbackType;
@@ -68,4 +68,4 @@ private:
} // namespace blink
-#endif // CustomElementLifecycleCallbacks_h
+#endif // V0CustomElementLifecycleCallbacks_h

Powered by Google App Engine
This is Rietveld 408576698