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

Unified Diff: third_party/WebKit/Source/bindings/tests/results/core/StringOrArrayBufferOrArrayBufferView.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/bindings/tests/results/core/StringOrArrayBufferOrArrayBufferView.cpp
diff --git a/third_party/WebKit/Source/bindings/tests/results/core/StringOrArrayBufferOrArrayBufferView.cpp b/third_party/WebKit/Source/bindings/tests/results/core/StringOrArrayBufferOrArrayBufferView.cpp
index facec37c2577b60cfe00e8af10305d0a563ae400..4c384c3065f479e421101f361d326468a0bf2d23 100644
--- a/third_party/WebKit/Source/bindings/tests/results/core/StringOrArrayBufferOrArrayBufferView.cpp
+++ b/third_party/WebKit/Source/bindings/tests/results/core/StringOrArrayBufferOrArrayBufferView.cpp
@@ -108,16 +108,16 @@ void V8StringOrArrayBufferOrArrayBufferView::toImpl(v8::Isolate* isolate, v8::Lo
}
}
-v8::Local<v8::Value> toV8(const StringOrArrayBufferOrArrayBufferView& impl, v8::Local<v8::Object> creationContext, v8::Isolate* isolate) {
+v8::Local<v8::Value> ToV8(const StringOrArrayBufferOrArrayBufferView& impl, v8::Local<v8::Object> creationContext, v8::Isolate* isolate) {
switch (impl.m_type) {
case StringOrArrayBufferOrArrayBufferView::SpecificTypeNone:
return v8::Null(isolate);
case StringOrArrayBufferOrArrayBufferView::SpecificTypeString:
return v8String(isolate, impl.getAsString());
case StringOrArrayBufferOrArrayBufferView::SpecificTypeArrayBuffer:
- return toV8(impl.getAsArrayBuffer(), creationContext, isolate);
+ return ToV8(impl.getAsArrayBuffer(), creationContext, isolate);
case StringOrArrayBufferOrArrayBufferView::SpecificTypeArrayBufferView:
- return toV8(impl.getAsArrayBufferView(), creationContext, isolate);
+ return ToV8(impl.getAsArrayBufferView(), creationContext, isolate);
default:
NOTREACHED();
}

Powered by Google App Engine
This is Rietveld 408576698