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

Unified Diff: Source/bindings/core/v8/custom/V8XSLTProcessorCustom.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/V8XSLTProcessorCustom.cpp
diff --git a/Source/bindings/core/v8/custom/V8XSLTProcessorCustom.cpp b/Source/bindings/core/v8/custom/V8XSLTProcessorCustom.cpp
index 5c361135d7188388ca01dd3e63ad2d127603585e..0b1320b0b3b9e58ab142b00dd03f64fb7e60de47 100644
--- a/Source/bindings/core/v8/custom/V8XSLTProcessorCustom.cpp
+++ b/Source/bindings/core/v8/custom/V8XSLTProcessorCustom.cpp
@@ -51,7 +51,7 @@ void V8XSLTProcessor::setParameterMethodCustom(const v8::FunctionCallbackInfo<v8
TOSTRING_VOID(V8StringResource<>, localName, info[1]);
TOSTRING_VOID(V8StringResource<>, value, info[2]);
- XSLTProcessor* impl = V8XSLTProcessor::toNative(info.Holder());
+ XSLTProcessor* impl = V8XSLTProcessor::toImpl(info.Holder());
impl->setParameter(namespaceURI, localName, value);
}
@@ -63,7 +63,7 @@ void V8XSLTProcessor::getParameterMethodCustom(const v8::FunctionCallbackInfo<v8
TOSTRING_VOID(V8StringResource<>, namespaceURI, info[0]);
TOSTRING_VOID(V8StringResource<>, localName, info[1]);
- XSLTProcessor* impl = V8XSLTProcessor::toNative(info.Holder());
+ XSLTProcessor* impl = V8XSLTProcessor::toImpl(info.Holder());
String result = impl->getParameter(namespaceURI, localName);
if (result.isNull())
return;
@@ -79,7 +79,7 @@ void V8XSLTProcessor::removeParameterMethodCustom(const v8::FunctionCallbackInfo
TOSTRING_VOID(V8StringResource<>, namespaceURI, info[0]);
TOSTRING_VOID(V8StringResource<>, localName, info[1]);
- XSLTProcessor* impl = V8XSLTProcessor::toNative(info.Holder());
+ XSLTProcessor* impl = V8XSLTProcessor::toImpl(info.Holder());
impl->removeParameter(namespaceURI, localName);
}
« no previous file with comments | « Source/bindings/core/v8/custom/V8XMLHttpRequestCustom.cpp ('k') | Source/bindings/modules/v8/IDBBindingUtilities.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698