| Index: Source/modules/background_sync/SyncError.cpp
|
| diff --git a/Source/modules/background_sync/SyncError.cpp b/Source/modules/background_sync/SyncError.cpp
|
| index b37847b1d922b7ef38d990ae8f22c4014ebe4399..873dd9ababffc73dffd80b6e7cf9a0f132e4aca5 100644
|
| --- a/Source/modules/background_sync/SyncError.cpp
|
| +++ b/Source/modules/background_sync/SyncError.cpp
|
| @@ -5,12 +5,13 @@
|
| #include "config.h"
|
| #include "modules/background_sync/SyncError.h"
|
|
|
| +#include "core/dom/DOMException.h"
|
| #include "core/dom/ExceptionCode.h"
|
| #include "wtf/OwnPtr.h"
|
|
|
| namespace blink {
|
|
|
| -PassRefPtrWillBeRawPtr<DOMException> SyncError::take(ScriptPromiseResolver*, WebType* webErrorRaw)
|
| +DOMException* SyncError::take(ScriptPromiseResolver*, WebType* webErrorRaw)
|
| {
|
| OwnPtr<WebType> webError = adoptPtr(webErrorRaw);
|
| switch (webError->errorType) {
|
|
|