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

Unified Diff: third_party/WebKit/Source/bindings/modules/v8/WebGLAny.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/modules/v8/WebGLAny.cpp
diff --git a/third_party/WebKit/Source/bindings/modules/v8/WebGLAny.cpp b/third_party/WebKit/Source/bindings/modules/v8/WebGLAny.cpp
index dae0333d13a9cb851b829e1a0d61c78d470e51fb..fd6042bb766fa77c6ca90825ef06b1d9b766174b 100644
--- a/third_party/WebKit/Source/bindings/modules/v8/WebGLAny.cpp
+++ b/third_party/WebKit/Source/bindings/modules/v8/WebGLAny.cpp
@@ -91,27 +91,27 @@ ScriptValue WebGLAny(ScriptState* scriptState, String value) {
}
ScriptValue WebGLAny(ScriptState* scriptState, WebGLObject* value) {
- return ScriptValue(scriptState, toV8(value, scriptState->context()->Global(),
+ return ScriptValue(scriptState, ToV8(value, scriptState->context()->Global(),
scriptState->isolate()));
}
ScriptValue WebGLAny(ScriptState* scriptState, DOMFloat32Array* value) {
- return ScriptValue(scriptState, toV8(value, scriptState->context()->Global(),
+ return ScriptValue(scriptState, ToV8(value, scriptState->context()->Global(),
scriptState->isolate()));
}
ScriptValue WebGLAny(ScriptState* scriptState, DOMInt32Array* value) {
- return ScriptValue(scriptState, toV8(value, scriptState->context()->Global(),
+ return ScriptValue(scriptState, ToV8(value, scriptState->context()->Global(),
scriptState->isolate()));
}
ScriptValue WebGLAny(ScriptState* scriptState, DOMUint8Array* value) {
- return ScriptValue(scriptState, toV8(value, scriptState->context()->Global(),
+ return ScriptValue(scriptState, ToV8(value, scriptState->context()->Global(),
scriptState->isolate()));
}
ScriptValue WebGLAny(ScriptState* scriptState, DOMUint32Array* value) {
- return ScriptValue(scriptState, toV8(value, scriptState->context()->Global(),
+ return ScriptValue(scriptState, ToV8(value, scriptState->context()->Global(),
scriptState->isolate()));
}

Powered by Google App Engine
This is Rietveld 408576698