| Index: third_party/WebKit/Source/modules/serviceworkers/ServiceWorkerError.cpp
|
| diff --git a/third_party/WebKit/Source/modules/serviceworkers/ServiceWorkerError.cpp b/third_party/WebKit/Source/modules/serviceworkers/ServiceWorkerError.cpp
|
| index 93e1fdadf56423d2f1dba3a866b6b95be4bb49c1..f197f17fed8a26045f6ca6381ebc96dd996cd29c 100644
|
| --- a/third_party/WebKit/Source/modules/serviceworkers/ServiceWorkerError.cpp
|
| +++ b/third_party/WebKit/Source/modules/serviceworkers/ServiceWorkerError.cpp
|
| @@ -137,6 +137,9 @@ v8::Local<v8::Value> ServiceWorkerErrorForUpdate::take(
|
| // a TypeError.
|
| return V8ThrowException::createTypeError(
|
| scriptState->isolate(), getExceptionParams(webError).message);
|
| + case WebServiceWorkerError::ErrorTypeType:
|
| + return V8ThrowException::createTypeError(scriptState->isolate(),
|
| + webError.message);
|
| default:
|
| return toV8(ServiceWorkerError::take(resolver, webError),
|
| scriptState->context()->Global(), scriptState->isolate());
|
|
|