| 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()
|
| {
|
| }
|
|
|
|
|