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

Unified Diff: third_party/WebKit/Source/bindings/tests/results/core/TestInterface2OrUint8Array.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/TestInterface2OrUint8Array.cpp
diff --git a/third_party/WebKit/Source/bindings/tests/results/core/TestInterface2OrUint8Array.cpp b/third_party/WebKit/Source/bindings/tests/results/core/TestInterface2OrUint8Array.cpp
index abe25c0fc7065867ad2d07d54f94bfb2b3185cb9..b08950b9c0f9dfeceb9d1fe7be03b5f2395f6d68 100644
--- a/third_party/WebKit/Source/bindings/tests/results/core/TestInterface2OrUint8Array.cpp
+++ b/third_party/WebKit/Source/bindings/tests/results/core/TestInterface2OrUint8Array.cpp
@@ -83,14 +83,14 @@ void V8TestInterface2OrUint8Array::toImpl(v8::Isolate* isolate, v8::Local<v8::Va
exceptionState.throwTypeError("The provided value is not of type '(TestInterface2 or Uint8Array)'");
}
-v8::Local<v8::Value> toV8(const TestInterface2OrUint8Array& impl, v8::Local<v8::Object> creationContext, v8::Isolate* isolate) {
+v8::Local<v8::Value> ToV8(const TestInterface2OrUint8Array& impl, v8::Local<v8::Object> creationContext, v8::Isolate* isolate) {
switch (impl.m_type) {
case TestInterface2OrUint8Array::SpecificTypeNone:
return v8::Null(isolate);
case TestInterface2OrUint8Array::SpecificTypeTestInterface2:
- return toV8(impl.getAsTestInterface2(), creationContext, isolate);
+ return ToV8(impl.getAsTestInterface2(), creationContext, isolate);
case TestInterface2OrUint8Array::SpecificTypeUint8Array:
- return toV8(impl.getAsUint8Array(), creationContext, isolate);
+ return ToV8(impl.getAsUint8Array(), creationContext, isolate);
default:
NOTREACHED();
}

Powered by Google App Engine
This is Rietveld 408576698