| Index: Source/bindings/v8/custom/V8BiquadFilterNodeCustom.cpp
|
| diff --git a/Source/bindings/v8/custom/V8BiquadFilterNodeCustom.cpp b/Source/bindings/v8/custom/V8BiquadFilterNodeCustom.cpp
|
| index ea209654ec7e37016074dfcbfdd10b34d0e395b1..862d040c3b42dece31991fdbdc485b634488ca9d 100644
|
| --- a/Source/bindings/v8/custom/V8BiquadFilterNodeCustom.cpp
|
| +++ b/Source/bindings/v8/custom/V8BiquadFilterNodeCustom.cpp
|
| @@ -45,7 +45,7 @@ void V8BiquadFilterNode::typeAttributeSetterCustom(v8::Local<v8::Value> value, c
|
| }
|
|
|
| if (value->IsString()) {
|
| - String type = toWebCoreString(value.As<v8::String>());
|
| + String type = toCoreString(value.As<v8::String>());
|
| if (type == "lowpass" || type == "highpass" || type == "bandpass" || type == "lowshelf" || type == "highshelf" || type == "peaking" || type == "notch" || type == "allpass") {
|
| imp->setType(type);
|
| return;
|
|
|