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

Unified Diff: Source/bindings/tests/results/V8TestException.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
Index: Source/bindings/tests/results/V8TestException.cpp
diff --git a/Source/bindings/tests/results/V8TestException.cpp b/Source/bindings/tests/results/V8TestException.cpp
index 47966e66fe252ac40307cf0d2674edfe312a40c9..52b3f16cdc087352b9d55061133280648bbbe5a2 100644
--- a/Source/bindings/tests/results/V8TestException.cpp
+++ b/Source/bindings/tests/results/V8TestException.cpp
@@ -74,8 +74,8 @@ template <typename T> void V8_USE(T) { }
static void readonlyUnsignedShortAttributeAttributeGetter(const v8::PropertyCallbackInfo<v8::Value>& info)
{
- TestException* imp = V8TestException::toNative(info.Holder());
- v8SetReturnValueUnsigned(info, imp->readonlyUnsignedShortAttribute());
+ TestException* impl = V8TestException::toNative(info.Holder());
+ v8SetReturnValueUnsigned(info, impl->readonlyUnsignedShortAttribute());
}
static void readonlyUnsignedShortAttributeAttributeGetterCallback(v8::Local<v8::String>, const v8::PropertyCallbackInfo<v8::Value>& info)
@@ -87,8 +87,8 @@ static void readonlyUnsignedShortAttributeAttributeGetterCallback(v8::Local<v8::
static void readonlyStringAttributeAttributeGetter(const v8::PropertyCallbackInfo<v8::Value>& info)
{
- TestException* imp = V8TestException::toNative(info.Holder());
- v8SetReturnValueString(info, imp->readonlyStringAttribute(), info.GetIsolate());
+ TestException* impl = V8TestException::toNative(info.Holder());
+ v8SetReturnValueString(info, impl->readonlyStringAttribute(), info.GetIsolate());
}
static void readonlyStringAttributeAttributeGetterCallback(v8::Local<v8::String>, const v8::PropertyCallbackInfo<v8::Value>& info)
@@ -100,8 +100,8 @@ static void readonlyStringAttributeAttributeGetterCallback(v8::Local<v8::String>
static void toStringMethod(const v8::FunctionCallbackInfo<v8::Value>& info)
{
- TestException* imp = V8TestException::toNative(info.Holder());
- v8SetReturnValueString(info, imp->toString(), info.GetIsolate());
+ TestException* impl = V8TestException::toNative(info.Holder());
+ v8SetReturnValueString(info, impl->toString(), info.GetIsolate());
}
static void toStringMethodCallback(const v8::FunctionCallbackInfo<v8::Value>& info)
« no previous file with comments | « Source/bindings/tests/results/V8TestEventTarget.cpp ('k') | Source/bindings/tests/results/V8TestInterface.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698