diff options
author | mkwst@chromium.org <mkwst@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-08-22 12:56:50 +0000 |
---|---|---|
committer | mkwst@chromium.org <mkwst@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-08-22 12:58:34 +0000 |
commit | e08e2f502b4dafd1c2574011c3dde43c5709524b (patch) | |
tree | 8e272c00b28c003e3fb536e04ab30e52a827f286 /ipc/ipc_message_start.h | |
parent | 73902b67c97fda182d22991a9e7faa110f926531 (diff) | |
download | chromium_src-e08e2f502b4dafd1c2574011c3dde43c5709524b.zip chromium_src-e08e2f502b4dafd1c2574011c3dde43c5709524b.tar.gz chromium_src-e08e2f502b4dafd1c2574011c3dde43c5709524b.tar.bz2 |
Credential Manager: Renderer-side implementation.
This patch does three things:
1. Implements the Blink platform interface WebCredentialManagerClient by
adding a CredentialManagerClient class to the password manager component.
2. Wires that implementation up to Blink's platform layer by creating an
instance of the new client, held in ChromeContentRendererClient, and
setting it as each new RenderView's client.
3. Stubs out IPCs for the renderer to pass messages up to the browser in
order to do the heavy lifting of actually answering Blink's requests by
generating and delivering Credential objects.
BUG=400674
TBR=tkent@chromium.org
Review URL: https://codereview.chromium.org/464883002
Cr-Commit-Position: refs/heads/master@{#291390}
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@291390 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ipc/ipc_message_start.h')
-rw-r--r-- | ipc/ipc_message_start.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ipc/ipc_message_start.h b/ipc/ipc_message_start.h index bcfcf7c..57f6dcc 100644 --- a/ipc/ipc_message_start.h +++ b/ipc/ipc_message_start.h @@ -106,6 +106,7 @@ enum IPCMessageStart { OzoneGpuMsgStart, ChromeUtilityExtensionsMsgStart, PlatformNotificationMsgStart, + CredentialManagerMsgStart, LastIPCMsgStart // Must come last. }; |