Index: third_party/WebKit/Source/core/dom/Document.cpp |
diff --git a/third_party/WebKit/Source/core/dom/Document.cpp b/third_party/WebKit/Source/core/dom/Document.cpp |
index 5163577596583956aac44fb63d5c25e8caec1774..825d605c35dd4a584566ec5841533001f15fbcce 100644 |
--- a/third_party/WebKit/Source/core/dom/Document.cpp |
+++ b/third_party/WebKit/Source/core/dom/Document.cpp |
@@ -5735,6 +5735,12 @@ bool Document::isSecureContext(String& errorMessage, const SecureContextCheck pr |
return true; |
} |
+bool Document::isSecureContext(const SecureContextCheck privilegeContextCheck) const |
+{ |
+ String unusedErrorMessage; |
+ return isSecureContext(unusedErrorMessage, privilegeContextCheck); |
+} |
+ |
WebTaskRunner* Document::loadingTaskRunner() const |
{ |
if (frame()) |