| Index: android_webview/native/aw_autofill_client.cc
|
| diff --git a/android_webview/native/aw_autofill_client.cc b/android_webview/native/aw_autofill_client.cc
|
| index 11079829ab95b4ae58ec8bcec4c02098c2e6430d..7f6043369c8407fcd359961d2e1e4be512d829ea 100644
|
| --- a/android_webview/native/aw_autofill_client.cc
|
| +++ b/android_webview/native/aw_autofill_client.cc
|
| @@ -185,12 +185,12 @@ void AwAutofillClient::OnFirstUserGestureObserved() {
|
| NOTIMPLEMENTED();
|
| }
|
|
|
| -bool AwAutofillClient::IsContextSecure(const GURL& form_origin) {
|
| +bool AwAutofillClient::IsContextSecure() {
|
| content::SSLStatus ssl_status;
|
| content::NavigationEntry* navigation_entry =
|
| web_contents_->GetController().GetLastCommittedEntry();
|
| if (!navigation_entry)
|
| - return false;
|
| + return false;
|
|
|
| ssl_status = navigation_entry->GetSSL();
|
| // Note: The implementation below is a copy of the one in
|
|
|