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

Unified Diff: third_party/WebKit/Source/bindings/core/v8/V0CustomElementBinding.cpp

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/V0CustomElementBinding.cpp
diff --git a/third_party/WebKit/Source/bindings/core/v8/CustomElementBinding.cpp b/third_party/WebKit/Source/bindings/core/v8/V0CustomElementBinding.cpp
similarity index 81%
rename from third_party/WebKit/Source/bindings/core/v8/CustomElementBinding.cpp
rename to third_party/WebKit/Source/bindings/core/v8/V0CustomElementBinding.cpp
index 47a23b06d1bf8ca70fcc528757297db9e0aae4e7..91dcdd93af8eb4291a2d16496148931dde1be125 100644
--- a/third_party/WebKit/Source/bindings/core/v8/CustomElementBinding.cpp
+++ b/third_party/WebKit/Source/bindings/core/v8/V0CustomElementBinding.cpp
@@ -28,22 +28,22 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-#include "bindings/core/v8/CustomElementBinding.h"
+#include "bindings/core/v8/V0CustomElementBinding.h"
namespace blink {
-PassOwnPtr<CustomElementBinding> CustomElementBinding::create(v8::Isolate* isolate, v8::Local<v8::Object> prototype)
+PassOwnPtr<V0CustomElementBinding> V0CustomElementBinding::create(v8::Isolate* isolate, v8::Local<v8::Object> prototype)
{
- return adoptPtr(new CustomElementBinding(isolate, prototype));
+ return adoptPtr(new V0CustomElementBinding(isolate, prototype));
}
-CustomElementBinding::CustomElementBinding(v8::Isolate* isolate, v8::Local<v8::Object> prototype)
+V0CustomElementBinding::V0CustomElementBinding(v8::Isolate* isolate, v8::Local<v8::Object> prototype)
: m_prototype(isolate, prototype)
{
ASSERT(!m_prototype.isEmpty());
}
-CustomElementBinding::~CustomElementBinding()
+V0CustomElementBinding::~V0CustomElementBinding()
{
}

Powered by Google App Engine
This is Rietveld 408576698