Index: third_party/WebKit/Source/core/workers/Worklet.cpp |
diff --git a/third_party/WebKit/Source/core/workers/Worklet.cpp b/third_party/WebKit/Source/core/workers/Worklet.cpp |
index 1df2f5591d41f7561b216abb23b1eaf38c580f86..152e84bad187c1693f6533df0b81ffe9580df770 100644 |
--- a/third_party/WebKit/Source/core/workers/Worklet.cpp |
+++ b/third_party/WebKit/Source/core/workers/Worklet.cpp |
@@ -22,8 +22,9 @@ ScriptPromise Worklet::import(ScriptState* scriptState, const String& url) { |
DCHECK(isMainThread()); |
if (!getExecutionContext()) { |
return ScriptPromise::rejectWithDOMException( |
- scriptState, DOMException::create(InvalidStateError, |
- "This frame is already detached")); |
+ scriptState, |
+ DOMException::create(InvalidStateError, |
+ "This frame is already detached")); |
} |
KURL scriptURL = getExecutionContext()->completeURL(url); |