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

Unified Diff: third_party/WebKit/Source/core/html/ImageData.cpp

Issue 2595543003: Rename toV8(...) function in Blink to ToV8(...). (Closed)
Patch Set: Rebasing... Created 3 years, 11 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: third_party/WebKit/Source/core/html/ImageData.cpp
diff --git a/third_party/WebKit/Source/core/html/ImageData.cpp b/third_party/WebKit/Source/core/html/ImageData.cpp
index 32726d5aef74e76fa1f9a1d4a83ba2c63ad13014..355814b2c3249bd4e0b6bd2f15439569c83edec4 100644
--- a/third_party/WebKit/Source/core/html/ImageData.cpp
+++ b/third_party/WebKit/Source/core/html/ImageData.cpp
@@ -201,7 +201,7 @@ v8::Local<v8::Object> ImageData::associateWithWrapper(
// Create a V8 Uint8ClampedArray object and set the "data" property
// of the ImageData object to the created v8 object, eliminating the
// C++ callback when accessing the "data" property.
- v8::Local<v8::Value> pixelArray = toV8(m_data.get(), wrapper, isolate);
+ v8::Local<v8::Value> pixelArray = ToV8(m_data.get(), wrapper, isolate);
if (pixelArray.IsEmpty() ||
!v8CallBoolean(wrapper->DefineOwnProperty(
isolate->GetCurrentContext(), v8AtomicString(isolate, "data"),

Powered by Google App Engine
This is Rietveld 408576698