| Index: third_party/WebKit/Source/bindings/core/v8/V0CustomElementBinding.h
|
| diff --git a/third_party/WebKit/Source/bindings/core/v8/CustomElementBinding.h b/third_party/WebKit/Source/bindings/core/v8/V0CustomElementBinding.h
|
| similarity index 82%
|
| rename from third_party/WebKit/Source/bindings/core/v8/CustomElementBinding.h
|
| rename to third_party/WebKit/Source/bindings/core/v8/V0CustomElementBinding.h
|
| index d40985d8c7efe634dc85ab6cdc152cb34dfb2c76..2f5ef1cb48c91d81d3eb069b4eeec40f20b7e30e 100644
|
| --- a/third_party/WebKit/Source/bindings/core/v8/CustomElementBinding.h
|
| +++ b/third_party/WebKit/Source/bindings/core/v8/V0CustomElementBinding.h
|
| @@ -28,8 +28,8 @@
|
| * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
| */
|
|
|
| -#ifndef CustomElementBinding_h
|
| -#define CustomElementBinding_h
|
| +#ifndef V0CustomElementBinding_h
|
| +#define V0CustomElementBinding_h
|
|
|
| #include "bindings/core/v8/ScopedPersistent.h"
|
| #include "wtf/Allocator.h"
|
| @@ -38,17 +38,17 @@
|
|
|
| namespace blink {
|
|
|
| -class CustomElementBinding {
|
| - USING_FAST_MALLOC(CustomElementBinding);
|
| +class V0CustomElementBinding {
|
| + USING_FAST_MALLOC(V0CustomElementBinding);
|
| public:
|
| - static PassOwnPtr<CustomElementBinding> create(v8::Isolate*, v8::Local<v8::Object> prototype);
|
| - ~CustomElementBinding();
|
| + static PassOwnPtr<V0CustomElementBinding> create(v8::Isolate*, v8::Local<v8::Object> prototype);
|
| + ~V0CustomElementBinding();
|
|
|
| private:
|
| - CustomElementBinding(v8::Isolate*, v8::Local<v8::Object> prototype);
|
| + V0CustomElementBinding(v8::Isolate*, v8::Local<v8::Object> prototype);
|
| ScopedPersistent<v8::Object> m_prototype;
|
| };
|
|
|
| } // namespace blink
|
|
|
| -#endif // CustomElementBinding_h
|
| +#endif // V0CustomElementBinding_h
|
|
|