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

Unified Diff: third_party/WebKit/Source/core/dom/DOMTypedArray.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/dom/DOMTypedArray.cpp
diff --git a/third_party/WebKit/Source/core/dom/DOMTypedArray.cpp b/third_party/WebKit/Source/core/dom/DOMTypedArray.cpp
index 0129349f396a5a971233baae438f156929a72a3c..fbe51a6d41ce2426aa7da258065d65978620be07 100644
--- a/third_party/WebKit/Source/core/dom/DOMTypedArray.cpp
+++ b/third_party/WebKit/Source/core/dom/DOMTypedArray.cpp
@@ -26,7 +26,7 @@ v8::Local<v8::Object> DOMTypedArray<WTFTypedArray, V8TypedArray>::wrap(
const WrapperTypeInfo* wrapperTypeInfo = this->wrapperTypeInfo();
DOMArrayBufferBase* buffer = this->bufferBase();
- v8::Local<v8::Value> v8Buffer = toV8(buffer, creationContext, isolate);
+ v8::Local<v8::Value> v8Buffer = ToV8(buffer, creationContext, isolate);
if (v8Buffer.IsEmpty())
return v8::Local<v8::Object>();
DCHECK_EQ(isShared(), v8Buffer->IsSharedArrayBuffer());
« no previous file with comments | « third_party/WebKit/Source/core/dom/DOMDataView.cpp ('k') | third_party/WebKit/Source/core/events/MessageEvent.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698