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

Unified Diff: Source/bindings/v8/custom/V8HTMLPlugInElementCustom.cpp

Issue 54283002: Rename |args| to |info| in V8 bindings (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: 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
Index: Source/bindings/v8/custom/V8HTMLPlugInElementCustom.cpp
diff --git a/Source/bindings/v8/custom/V8HTMLPlugInElementCustom.cpp b/Source/bindings/v8/custom/V8HTMLPlugInElementCustom.cpp
index fa21c65fa199eca7d4ea857dccea7a8f7815fbfb..6de545316f11e41bfb0e9ea83c202fa57cc69ad2 100644
--- a/Source/bindings/v8/custom/V8HTMLPlugInElementCustom.cpp
+++ b/Source/bindings/v8/custom/V8HTMLPlugInElementCustom.cpp
@@ -103,25 +103,25 @@ void V8HTMLObjectElement::namedPropertySetterCustom(v8::Local<v8::String> name,
return npObjectNamedSetter<V8HTMLObjectElement>(name, value, info);
}
-void V8HTMLAppletElement::legacyCallCustom(const v8::FunctionCallbackInfo<v8::Value>& args)
+void V8HTMLAppletElement::legacyCallCustom(const v8::FunctionCallbackInfo<v8::Value>& info)
{
- HTMLPlugInElement* imp = V8HTMLAppletElement::toNative(args.Holder());
+ HTMLPlugInElement* imp = V8HTMLAppletElement::toNative(info.Holder());
UseCounter::count(imp->document(), UseCounter::HTMLAppletElementLegacyCall);
- npObjectInvokeDefaultHandler(args);
+ npObjectInvokeDefaultHandler(info);
}
-void V8HTMLEmbedElement::legacyCallCustom(const v8::FunctionCallbackInfo<v8::Value>& args)
+void V8HTMLEmbedElement::legacyCallCustom(const v8::FunctionCallbackInfo<v8::Value>& info)
{
- HTMLPlugInElement* imp = V8HTMLEmbedElement::toNative(args.Holder());
+ HTMLPlugInElement* imp = V8HTMLEmbedElement::toNative(info.Holder());
UseCounter::count(imp->document(), UseCounter::HTMLEmbedElementLegacyCall);
- npObjectInvokeDefaultHandler(args);
+ npObjectInvokeDefaultHandler(info);
}
-void V8HTMLObjectElement::legacyCallCustom(const v8::FunctionCallbackInfo<v8::Value>& args)
+void V8HTMLObjectElement::legacyCallCustom(const v8::FunctionCallbackInfo<v8::Value>& info)
{
- HTMLPlugInElement* imp = V8HTMLObjectElement::toNative(args.Holder());
+ HTMLPlugInElement* imp = V8HTMLObjectElement::toNative(info.Holder());
UseCounter::count(imp->document(), UseCounter::HTMLObjectElementLegacyCall);
- npObjectInvokeDefaultHandler(args);
+ npObjectInvokeDefaultHandler(info);
}
template <class C>
« no previous file with comments | « Source/bindings/v8/custom/V8HTMLOptionsCollectionCustom.cpp ('k') | Source/bindings/v8/custom/V8HistoryCustom.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698