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

Unified Diff: third_party/WebKit/Source/bindings/core/v8/custom/V8MessageEventCustom.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/core/v8/custom/V8MessageEventCustom.cpp
diff --git a/third_party/WebKit/Source/bindings/core/v8/custom/V8MessageEventCustom.cpp b/third_party/WebKit/Source/bindings/core/v8/custom/V8MessageEventCustom.cpp
index 93d36fd389c2fda3ce926bc194bf989f6fce18c5..b9f949d19cdb8d5a1ced8ce5b9d1858cf291af75 100644
--- a/third_party/WebKit/Source/bindings/core/v8/custom/V8MessageEventCustom.cpp
+++ b/third_party/WebKit/Source/bindings/core/v8/custom/V8MessageEventCustom.cpp
@@ -78,12 +78,12 @@ void V8MessageEvent::dataAttributeGetterCustom(
break;
case MessageEvent::DataTypeBlob:
- result = toV8(event->dataAsBlob(), info.Holder(), info.GetIsolate());
+ result = ToV8(event->dataAsBlob(), info.Holder(), info.GetIsolate());
break;
case MessageEvent::DataTypeArrayBuffer:
result =
- toV8(event->dataAsArrayBuffer(), info.Holder(), info.GetIsolate());
+ ToV8(event->dataAsArrayBuffer(), info.Holder(), info.GetIsolate());
break;
}

Powered by Google App Engine
This is Rietveld 408576698