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

Unified Diff: Source/bindings/v8/CustomElementBinding.cpp

Issue 40433002: Make wrapperTypeInfo static member const in bindings classes (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase Created 7 years, 2 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
« no previous file with comments | « Source/bindings/v8/CustomElementBinding.h ('k') | Source/bindings/v8/CustomElementConstructorBuilder.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/bindings/v8/CustomElementBinding.cpp
diff --git a/Source/bindings/v8/CustomElementBinding.cpp b/Source/bindings/v8/CustomElementBinding.cpp
index 4f7e74e6733fd828d296fd2ec7cf39dfe762a115..25ba61792f359f1d867fb2a1210dc57bc43bb237 100644
--- a/Source/bindings/v8/CustomElementBinding.cpp
+++ b/Source/bindings/v8/CustomElementBinding.cpp
@@ -33,12 +33,12 @@
namespace WebCore {
-PassOwnPtr<CustomElementBinding> CustomElementBinding::create(v8::Isolate* isolate, v8::Handle<v8::Object> prototype, WrapperTypeInfo* wrapperType)
+PassOwnPtr<CustomElementBinding> CustomElementBinding::create(v8::Isolate* isolate, v8::Handle<v8::Object> prototype, const WrapperTypeInfo* wrapperType)
{
return adoptPtr(new CustomElementBinding(isolate, prototype, wrapperType));
}
-CustomElementBinding::CustomElementBinding(v8::Isolate* isolate, v8::Handle<v8::Object> prototype, WrapperTypeInfo* wrapperType)
+CustomElementBinding::CustomElementBinding(v8::Isolate* isolate, v8::Handle<v8::Object> prototype, const WrapperTypeInfo* wrapperType)
: m_isolate(isolate)
, m_prototype(isolate, prototype)
, m_wrapperType(wrapperType)
« no previous file with comments | « Source/bindings/v8/CustomElementBinding.h ('k') | Source/bindings/v8/CustomElementConstructorBuilder.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698