Commit 3390b46c authored by mkwst@chromium.org's avatar mkwst@chromium.org

Credential manager: Fixing missing stub declarations.

https://src.chromium.org/viewvc/blink?view=rev&revision=180040 introduced
the WebCredentialManager interface, but neglected to create default
constructor/destructor implementations. This trivial patch corrects that
oversight.

BUG=400674
TBR=tkent@chromium.org

Review URL: https://codereview.chromium.org/466713002

git-svn-id: svn://svn.chromium.org/blink/trunk@180067 bbb929c8-8fbe-4397-9dbb-9b2b20218538
parent efa48c0c
...@@ -19,8 +19,8 @@ public: ...@@ -19,8 +19,8 @@ public:
typedef WebCallbacks<WebCredential, WebCredentialManagerError> RequestCallbacks; typedef WebCallbacks<WebCredential, WebCredentialManagerError> RequestCallbacks;
typedef WebCallbacks<void, WebCredentialManagerError> NotificationCallbacks; typedef WebCallbacks<void, WebCredentialManagerError> NotificationCallbacks;
WebCredentialManager(); WebCredentialManager() { }
virtual ~WebCredentialManager(); virtual ~WebCredentialManager() { }
// Ownership of the callback is transferred to the callee for each of the following methods. // Ownership of the callback is transferred to the callee for each of the following methods.
virtual void dispatchFailedSignIn(const WebCredential&, NotificationCallbacks*) { } virtual void dispatchFailedSignIn(const WebCredential&, NotificationCallbacks*) { }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment