Index: third_party/WebKit/Source/core/frame/DOMWindow.cpp |
diff --git a/third_party/WebKit/Source/core/frame/DOMWindow.cpp b/third_party/WebKit/Source/core/frame/DOMWindow.cpp |
index 3d6ecea886255e4a9009cc1e6836f61918311bc5..4809560659a0d6b1e8f6894c13d6a3da2e067060 100644 |
--- a/third_party/WebKit/Source/core/frame/DOMWindow.cpp |
+++ b/third_party/WebKit/Source/core/frame/DOMWindow.cpp |
@@ -178,9 +178,10 @@ void DOMWindow::postMessage(PassRefPtr<SerializedScriptValue> message, |
// It doesn't make sense target a postMessage at a unique origin |
// because there's no way to represent a unique origin in a string. |
if (target->isUnique()) { |
- exceptionState.throwDOMException( |
- SyntaxError, "Invalid target origin '" + targetOrigin + |
- "' in a call to 'postMessage'."); |
+ exceptionState.throwDOMException(SyntaxError, |
+ "Invalid target origin '" + |
+ targetOrigin + |
+ "' in a call to 'postMessage'."); |
return; |
} |
} |