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

Unified Diff: third_party/WebKit/Source/bindings/core/v8/V8PerContextData.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/bindings/core/v8/V8PerContextData.h
diff --git a/third_party/WebKit/Source/bindings/core/v8/V8PerContextData.h b/third_party/WebKit/Source/bindings/core/v8/V8PerContextData.h
index dfcd372a8bbb127d7a41043afb8b8f01dd06629a..0b9731875776ed64762420bf69ea28e3412aec3f 100644
--- a/third_party/WebKit/Source/bindings/core/v8/V8PerContextData.h
+++ b/third_party/WebKit/Source/bindings/core/v8/V8PerContextData.h
@@ -31,8 +31,8 @@
#ifndef V8PerContextData_h
#define V8PerContextData_h
-#include "bindings/core/v8/CustomElementBinding.h"
#include "bindings/core/v8/ScopedPersistent.h"
+#include "bindings/core/v8/V0CustomElementBinding.h"
#include "bindings/core/v8/V8GlobalValueMap.h"
#include "bindings/core/v8/WrapperTypeInfo.h"
#include "core/CoreExport.h"
@@ -84,7 +84,7 @@ public:
v8::Local<v8::Object> prototypeForType(const WrapperTypeInfo*);
- void addCustomElementBinding(PassOwnPtr<CustomElementBinding>);
+ void addCustomElementBinding(PassOwnPtr<V0CustomElementBinding>);
V8DOMActivityLogger* activityLogger() const { return m_activityLogger; }
void setActivityLogger(V8DOMActivityLogger* activityLogger) { m_activityLogger = activityLogger; }
@@ -113,8 +113,8 @@ private:
ScopedPersistent<v8::Context> m_context;
ScopedPersistent<v8::Value> m_errorPrototype;
- typedef Vector<OwnPtr<CustomElementBinding>> CustomElementBindingList;
- CustomElementBindingList m_customElementBindings;
+ typedef Vector<OwnPtr<V0CustomElementBinding>> V0CustomElementBindingList;
+ V0CustomElementBindingList m_customElementBindings;
// This is owned by a static hash map in V8DOMActivityLogger.
V8DOMActivityLogger* m_activityLogger;

Powered by Google App Engine
This is Rietveld 408576698