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

Unified Diff: Source/bindings/core/v8/Dictionary.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
« no previous file with comments | « Source/bindings/core/v8/DOMWrapperMap.h ('k') | Source/bindings/core/v8/DictionaryHelperForBindings.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/bindings/core/v8/Dictionary.cpp
diff --git a/Source/bindings/core/v8/Dictionary.cpp b/Source/bindings/core/v8/Dictionary.cpp
index 88e8213ea2b6f59a575a432e622668c77aa15f1a..7bf0a302b48a340a4e94ac02c0a9090d815ca4a2 100644
--- a/Source/bindings/core/v8/Dictionary.cpp
+++ b/Source/bindings/core/v8/Dictionary.cpp
@@ -155,7 +155,7 @@ bool Dictionary::getWithUndefinedOrNullCheck(const String& key, RefPtrWillBeMemb
if (!getKey(key, v8Value) || blink::isUndefinedOrNull(v8Value))
return false;
- value = V8Element::toNativeWithTypeCheck(m_isolate, v8Value);
+ value = V8Element::toImplWithTypeCheck(m_isolate, v8Value);
return true;
}
@@ -165,7 +165,7 @@ bool Dictionary::getWithUndefinedOrNullCheck(const String& key, RefPtrWillBeMemb
if (!getKey(key, v8Value) || blink::isUndefinedOrNull(v8Value))
return false;
- value = V8Path2D::toNativeWithTypeCheck(m_isolate, v8Value);
+ value = V8Path2D::toImplWithTypeCheck(m_isolate, v8Value);
return true;
}
« no previous file with comments | « Source/bindings/core/v8/DOMWrapperMap.h ('k') | Source/bindings/core/v8/DictionaryHelperForBindings.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698