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 d48031ce4df847e4ffdb4dba9c8a4e9ed7380bc1..aa405c657fe32af5e043557344e73ae5311b2726 100644 |
--- a/third_party/WebKit/Source/core/frame/DOMWindow.cpp |
+++ b/third_party/WebKit/Source/core/frame/DOMWindow.cpp |
@@ -163,8 +163,7 @@ bool DOMWindow::isSecureContext() const |
if (!frame()) |
return false; |
- String unusedErrorMessage; |
- return document()->isSecureContext(unusedErrorMessage, ExecutionContext::StandardSecureContextCheck); |
+ return document()->ExecutionContext::isSecureContext(ExecutionContext::StandardSecureContextCheck); |
estark
2015/12/18 00:00:58
same here
|
} |
void DOMWindow::postMessage(PassRefPtr<SerializedScriptValue> message, const MessagePortArray* ports, const String& targetOrigin, LocalDOMWindow* source, ExceptionState& exceptionState) |