| Index: components/test_runner/mock_credential_manager_client.h
|
| diff --git a/components/test_runner/mock_credential_manager_client.h b/components/test_runner/mock_credential_manager_client.h
|
| index 85ae81a9278aefc4e1b9d0a944c5b0fa2fbf0c65..78c1b18781a20852d7f8cf3305488136bdbfaf98 100644
|
| --- a/components/test_runner/mock_credential_manager_client.h
|
| +++ b/components/test_runner/mock_credential_manager_client.h
|
| @@ -26,13 +26,12 @@ class MockCredentialManagerClient : public blink::WebCredentialManagerClient {
|
| void SetResponse(blink::WebCredential* credential);
|
|
|
| // blink::WebCredentialManager:
|
| - virtual void dispatchStore(const blink::WebCredential& credential,
|
| - NotificationCallbacks* callbacks);
|
| - virtual void dispatchRequireUserMediation(NotificationCallbacks* callbacks);
|
| - virtual void dispatchGet(
|
| - bool zero_click_only,
|
| - const blink::WebVector<blink::WebURL>& federations,
|
| - RequestCallbacks* callbacks);
|
| + void dispatchStore(const blink::WebCredential& credential,
|
| + NotificationCallbacks* callbacks) override;
|
| + void dispatchRequireUserMediation(NotificationCallbacks* callbacks) override;
|
| + void dispatchGet(bool zero_click_only,
|
| + const blink::WebVector<blink::WebURL>& federations,
|
| + RequestCallbacks* callbacks) override;
|
|
|
| private:
|
| scoped_ptr<blink::WebCredential> credential_;
|
|
|