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

Unified Diff: Source/bindings/v8/custom/V8FileReaderCustom.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/v8/custom/V8FileReaderCustom.cpp
diff --git a/Source/bindings/v8/custom/V8FileReaderCustom.cpp b/Source/bindings/v8/custom/V8FileReaderCustom.cpp
index c6ee39e6f4bdc481b920f19805fef903f69bbe79..354f6bce931aba5f56342039da6eb87a2de26da8 100644
--- a/Source/bindings/v8/custom/V8FileReaderCustom.cpp
+++ b/Source/bindings/v8/custom/V8FileReaderCustom.cpp
@@ -40,12 +40,12 @@ namespace WebCore {
void V8FileReader::resultAttributeGetterCustom(const v8::PropertyCallbackInfo<v8::Value>& info)
{
v8::Handle<v8::Object> holder = info.Holder();
- FileReader* imp = V8FileReader::toNative(holder);
- if (imp->readType() == FileReaderLoader::ReadAsArrayBuffer) {
- v8SetReturnValueFast(info, imp->arrayBufferResult(), imp);
+ FileReader* impl = V8FileReader::toNative(holder);
+ if (impl->readType() == FileReaderLoader::ReadAsArrayBuffer) {
+ v8SetReturnValueFast(info, impl->arrayBufferResult(), impl);
return;
}
- v8SetReturnValueStringOrNull(info, imp->stringResult(), info.GetIsolate());
+ v8SetReturnValueStringOrNull(info, impl->stringResult(), info.GetIsolate());
}
} // namespace WebCore
« no previous file with comments | « Source/bindings/v8/custom/V8ElementCustom.cpp ('k') | Source/bindings/v8/custom/V8HTMLAllCollectionCustom.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698