| 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()));
|
| }
|
|
|
|
|