| Index: components/password_manager/content/renderer/credential_manager_client.h
|
| diff --git a/components/password_manager/content/renderer/credential_manager_client.h b/components/password_manager/content/renderer/credential_manager_client.h
|
| index 3382c23ea88169578770be0367dc34adf1e8a5c7..a2f35c2c4eeae70417a7066b649495d661bb3ed0 100644
|
| --- a/components/password_manager/content/renderer/credential_manager_client.h
|
| +++ b/components/password_manager/content/renderer/credential_manager_client.h
|
| @@ -63,13 +63,13 @@ class CredentialManagerClient : public blink::WebCredentialManagerClient,
|
| blink::WebCredentialManagerError::ErrorType error_type);
|
|
|
| // blink::WebCredentialManager:
|
| - virtual void dispatchStore(
|
| + void dispatchStore(
|
| const blink::WebCredential& credential,
|
| - WebCredentialManagerClient::NotificationCallbacks* callbacks);
|
| - virtual void dispatchRequireUserMediation(NotificationCallbacks* callbacks);
|
| - virtual void dispatchGet(bool zero_click_only,
|
| - const blink::WebVector<blink::WebURL>& federations,
|
| - RequestCallbacks* callbacks);
|
| + WebCredentialManagerClient::NotificationCallbacks* callbacks) override;
|
| + void dispatchRequireUserMediation(NotificationCallbacks* callbacks) override;
|
| + void dispatchGet(bool zero_click_only,
|
| + const blink::WebVector<blink::WebURL>& federations,
|
| + RequestCallbacks* callbacks) override;
|
|
|
| private:
|
| typedef IDMap<blink::WebCredentialManagerClient::RequestCallbacks,
|
|
|