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

Unified Diff: third_party/WebKit/Source/core/dom/custom/V0CustomElementCallbackInvocation.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/V0CustomElementCallbackInvocation.h
diff --git a/third_party/WebKit/Source/core/dom/custom/CustomElementCallbackInvocation.h b/third_party/WebKit/Source/core/dom/custom/V0CustomElementCallbackInvocation.h
similarity index 64%
rename from third_party/WebKit/Source/core/dom/custom/CustomElementCallbackInvocation.h
rename to third_party/WebKit/Source/core/dom/custom/V0CustomElementCallbackInvocation.h
index 91f7114fd4a7cc9475bc6b5f1cec4f3566430ac7..41eee538a97b77d3c0f9a2639cfe1e69f2835814 100644
--- a/third_party/WebKit/Source/core/dom/custom/CustomElementCallbackInvocation.h
+++ b/third_party/WebKit/Source/core/dom/custom/V0CustomElementCallbackInvocation.h
@@ -28,35 +28,35 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-#ifndef CustomElementCallbackInvocation_h
-#define CustomElementCallbackInvocation_h
+#ifndef V0CustomElementCallbackInvocation_h
+#define V0CustomElementCallbackInvocation_h
-#include "core/dom/custom/CustomElementLifecycleCallbacks.h"
-#include "core/dom/custom/CustomElementProcessingStep.h"
+#include "core/dom/custom/V0CustomElementLifecycleCallbacks.h"
+#include "core/dom/custom/V0CustomElementProcessingStep.h"
#include "wtf/text/AtomicString.h"
namespace blink {
-class CustomElementCallbackInvocation : public CustomElementProcessingStep {
- WTF_MAKE_NONCOPYABLE(CustomElementCallbackInvocation);
+class V0CustomElementCallbackInvocation : public V0CustomElementProcessingStep {
+ WTF_MAKE_NONCOPYABLE(V0CustomElementCallbackInvocation);
public:
- static CustomElementCallbackInvocation* createInvocation(CustomElementLifecycleCallbacks*, CustomElementLifecycleCallbacks::CallbackType);
- static CustomElementCallbackInvocation* createAttributeChangedInvocation(CustomElementLifecycleCallbacks*, const AtomicString& name, const AtomicString& oldValue, const AtomicString& newValue);
+ static V0CustomElementCallbackInvocation* createInvocation(V0CustomElementLifecycleCallbacks*, V0CustomElementLifecycleCallbacks::CallbackType);
+ static V0CustomElementCallbackInvocation* createAttributeChangedInvocation(V0CustomElementLifecycleCallbacks*, const AtomicString& name, const AtomicString& oldValue, const AtomicString& newValue);
protected:
- CustomElementCallbackInvocation(CustomElementLifecycleCallbacks* callbacks)
+ V0CustomElementCallbackInvocation(V0CustomElementLifecycleCallbacks* callbacks)
: m_callbacks(callbacks)
{
}
- CustomElementLifecycleCallbacks* callbacks() { return m_callbacks.get(); }
+ V0CustomElementLifecycleCallbacks* callbacks() { return m_callbacks.get(); }
DECLARE_VIRTUAL_TRACE();
private:
- Member<CustomElementLifecycleCallbacks> m_callbacks;
+ Member<V0CustomElementLifecycleCallbacks> m_callbacks;
};
} // namespace blink
-#endif // CustomElementCallbackInvocation_h
+#endif // V0CustomElementCallbackInvocation_h

Powered by Google App Engine
This is Rietveld 408576698