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

Unified Diff: Source/bindings/core/v8/custom/V8CustomEventCustom.cpp

Issue 537403002: bindings: Renames from/toInternalPointer, etc. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Synced. Created 6 years, 3 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: Source/bindings/core/v8/custom/V8CustomEventCustom.cpp
diff --git a/Source/bindings/core/v8/custom/V8CustomEventCustom.cpp b/Source/bindings/core/v8/custom/V8CustomEventCustom.cpp
index 9809a9383fb3f7fdfb679bf8f22abc3e7e1ddc85..055565a9f19fcf0b1398323b9d9c73504531589a 100644
--- a/Source/bindings/core/v8/custom/V8CustomEventCustom.cpp
+++ b/Source/bindings/core/v8/custom/V8CustomEventCustom.cpp
@@ -51,7 +51,7 @@ static v8::Handle<v8::Value> cacheState(v8::Handle<v8::Object> customEvent, v8::
void V8CustomEvent::detailAttributeGetterCustom(const v8::PropertyCallbackInfo<v8::Value>& info)
{
- CustomEvent* event = V8CustomEvent::toNative(info.Holder());
+ CustomEvent* event = V8CustomEvent::toImpl(info.Holder());
v8::Handle<v8::Value> result = V8HiddenValue::getHiddenValue(info.GetIsolate(), info.Holder(), V8HiddenValue::detail(info.GetIsolate()));
@@ -79,7 +79,7 @@ void V8CustomEvent::detailAttributeGetterCustom(const v8::PropertyCallbackInfo<v
void V8CustomEvent::initCustomEventMethodCustom(const v8::FunctionCallbackInfo<v8::Value>& info)
{
- CustomEvent* event = V8CustomEvent::toNative(info.Holder());
+ CustomEvent* event = V8CustomEvent::toImpl(info.Holder());
ASSERT(!event->serializedDetail());
TOSTRING_VOID(V8StringResource<>, typeArg, info[0]);

Powered by Google App Engine
This is Rietveld 408576698