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/V0CustomElementObserver.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/V0CustomElementObserver.h
diff --git a/third_party/WebKit/Source/core/dom/custom/CustomElementObserver.h b/third_party/WebKit/Source/core/dom/custom/V0CustomElementObserver.h
similarity index 88%
rename from third_party/WebKit/Source/core/dom/custom/CustomElementObserver.h
rename to third_party/WebKit/Source/core/dom/custom/V0CustomElementObserver.h
index b27c9293ea693d69ff7352707fd6ada2b30747ba..130c4c818c776aea7e2bf7e0606bd8d24712bd8f 100644
--- a/third_party/WebKit/Source/core/dom/custom/CustomElementObserver.h
+++ b/third_party/WebKit/Source/core/dom/custom/V0CustomElementObserver.h
@@ -28,8 +28,8 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-#ifndef CustomElementObserver_h
-#define CustomElementObserver_h
+#ifndef V0CustomElementObserver_h
+#define V0CustomElementObserver_h
#include "platform/heap/Handle.h"
#include "wtf/HashMap.h"
@@ -38,9 +38,9 @@ namespace blink {
class Element;
-class CustomElementObserver : public GarbageCollectedFinalized<CustomElementObserver> {
+class V0CustomElementObserver : public GarbageCollectedFinalized<V0CustomElementObserver> {
public:
- virtual ~CustomElementObserver() { }
+ virtual ~V0CustomElementObserver() { }
// API for CustomElement to kick off notifications
static void notifyElementWasDestroyed(Element*);
@@ -48,7 +48,7 @@ public:
DEFINE_INLINE_VIRTUAL_TRACE() { }
protected:
- CustomElementObserver() { }
+ V0CustomElementObserver() { }
void observe(Element*);
void unobserve(Element*);
@@ -58,4 +58,4 @@ protected:
} // namespace blink
-#endif // CustomElementObserver_h
+#endif // V0CustomElementObserver_h

Powered by Google App Engine
This is Rietveld 408576698