Index: third_party/WebKit/Source/core/html/HTMLKeygenElement.cpp |
diff --git a/third_party/WebKit/Source/core/html/HTMLKeygenElement.cpp b/third_party/WebKit/Source/core/html/HTMLKeygenElement.cpp |
index 90b3c4071f026e5ee627762c5ba6b7f8163cd84f..97a57410ac4d398e8a4411a25c8b562320582e7a 100644 |
--- a/third_party/WebKit/Source/core/html/HTMLKeygenElement.cpp |
+++ b/third_party/WebKit/Source/core/html/HTMLKeygenElement.cpp |
@@ -105,7 +105,7 @@ void HTMLKeygenElement::appendToFormData(FormData& formData) |
const AtomicString& keyType = fastGetAttribute(keytypeAttr); |
if (!keyType.isNull() && !equalIgnoringCase(keyType, "rsa")) |
return; |
- SecurityOrigin* topOrigin = document().frame()->tree().top()->securityContext()->securityOrigin(); |
+ SecurityOrigin* topOrigin = document().frame()->tree().top()->securityContext()->getSecurityOrigin(); |
String value = Platform::current()->signedPublicKeyAndChallengeString( |
shadowSelect()->selectedIndex(), fastGetAttribute(challengeAttr), document().baseURL(), |
KURL(KURL(), topOrigin->toString())); |