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/tests/results/V8SVGTestInterface.cpp

Issue 202203009: Rename |imp| => |impl| in bindings generation (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: custom/v8 too Created 6 years, 9 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/templates/methods.cpp ('k') | Source/bindings/tests/results/V8TestEventTarget.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/bindings/tests/results/V8SVGTestInterface.cpp
diff --git a/Source/bindings/tests/results/V8SVGTestInterface.cpp b/Source/bindings/tests/results/V8SVGTestInterface.cpp
index c03de487ab3c25b4408b031cda263e916ba9d954..cd72cadb0ed5e6bebf5b15c6283f2a83e781ce91 100644
--- a/Source/bindings/tests/results/V8SVGTestInterface.cpp
+++ b/Source/bindings/tests/results/V8SVGTestInterface.cpp
@@ -76,8 +76,8 @@ template <typename T> void V8_USE(T) { }
static void typeAttributeGetter(const v8::PropertyCallbackInfo<v8::Value>& info)
{
- SVGTestInterface* imp = V8SVGTestInterface::toNative(info.Holder());
- v8SetReturnValueString(info, imp->fastGetAttribute(SVGNames::typeAttr), info.GetIsolate());
+ SVGTestInterface* impl = V8SVGTestInterface::toNative(info.Holder());
+ v8SetReturnValueString(info, impl->fastGetAttribute(SVGNames::typeAttr), info.GetIsolate());
}
static void typeAttributeGetterCallback(v8::Local<v8::String>, const v8::PropertyCallbackInfo<v8::Value>& info)
@@ -89,10 +89,10 @@ static void typeAttributeGetterCallback(v8::Local<v8::String>, const v8::Propert
static void typeAttributeSetter(v8::Local<v8::Value> jsValue, const v8::PropertyCallbackInfo<void>& info)
{
- SVGTestInterface* imp = V8SVGTestInterface::toNative(info.Holder());
+ SVGTestInterface* impl = V8SVGTestInterface::toNative(info.Holder());
V8TRYCATCH_FOR_V8STRINGRESOURCE_VOID(V8StringResource<>, cppValue, jsValue);
CustomElementCallbackDispatcher::CallbackDeliveryScope deliveryScope;
- imp->setAttribute(SVGNames::typeAttr, cppValue);
+ impl->setAttribute(SVGNames::typeAttr, cppValue);
}
static void typeAttributeSetterCallback(v8::Local<v8::String>, v8::Local<v8::Value> jsValue, const v8::PropertyCallbackInfo<void>& info)
« no previous file with comments | « Source/bindings/templates/methods.cpp ('k') | Source/bindings/tests/results/V8TestEventTarget.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698