1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 // Message definition file, included multiple times, hence no include guard.
10 #include "base/strings/string16.h"
11 #include "components/password_manager/core/common/credential_manager_types.h"
12 #include "content/public/common/common_param_traits.h"
13 #include "content/public/common/common_param_traits_macros.h"
14 #include "ipc/ipc_message_macros.h"
15 #include "ipc/ipc_message_utils.h"
16 #include "third_party/WebKit/public/platform/WebCredentialManagerError.h"
19 #define IPC_MESSAGE_START CredentialManagerMsgStart
21 IPC_ENUM_TRAITS_MAX_VALUE(
22 password_manager::CredentialType
,
23 password_manager::CredentialType::CREDENTIAL_TYPE_LAST
)
25 IPC_ENUM_TRAITS_MAX_VALUE(blink::WebCredentialManagerError::ErrorType
,
26 blink::WebCredentialManagerError::ErrorTypeLast
)
28 IPC_STRUCT_TRAITS_BEGIN(password_manager::CredentialInfo
)
29 IPC_STRUCT_TRAITS_MEMBER(type
)
30 IPC_STRUCT_TRAITS_MEMBER(id
)
31 IPC_STRUCT_TRAITS_MEMBER(name
)
32 IPC_STRUCT_TRAITS_MEMBER(avatar
)
33 IPC_STRUCT_TRAITS_MEMBER(password
)
34 IPC_STRUCT_TRAITS_MEMBER(federation
)
35 IPC_STRUCT_TRAITS_END()
37 // ----------------------------------------------------------------------------
38 // Messages sent from the renderer to the browser
40 // Passes the notification from 'navigator.credentials.notifyFailedSignIn()' up
41 // to the browser process in order to suppress the automatic bubble which would
42 // pop up in order to prompt the user to save the credential she used for
43 // signin. The browser process will respond with a
44 // CredentialManagerMsg_AcknowledgeFailedSignedIn message.
45 IPC_MESSAGE_ROUTED2(CredentialManagerHostMsg_NotifyFailedSignIn
,
47 password_manager::CredentialInfo
/* credential */)
49 // Passes the notification from 'navigator.credentials.notifySignedIn()' up to
50 // the browser process in order to (among other things) prompt the user to save
51 // the credential she used for signin. The browser process will respond with a
52 // CredentialManagerMsg_AcknowledgeSignedIn message.
53 IPC_MESSAGE_ROUTED2(CredentialManagerHostMsg_NotifySignedIn
,
55 password_manager::CredentialInfo
/* credential */)
57 // Passes the notification from 'navigator.credentials.notifySignedOut()' up to
58 // the browser process in order to clear the "zeroclick" bit on that origin's
59 // stored credentials. The browser process will respond with a
60 // CredentialManagerMsg_AcknowledgeSignedOut message.
61 IPC_MESSAGE_ROUTED1(CredentialManagerHostMsg_NotifySignedOut
,
64 // Requests a credential from the browser process in response to a page calling
65 // 'navigator.credentials.request()'. The browser process will respond with a
66 // CredentialManagerMsg_SendCredential message.
67 IPC_MESSAGE_ROUTED3(CredentialManagerHostMsg_RequestCredential
,
69 bool /* zero_click_only */,
70 std::vector
<GURL
> /* federations */)
72 // ----------------------------------------------------------------------------
73 // Messages sent from the browser to the renderer
75 // Notify the renderer that the browser process has finished processing a
76 // CredentialManagerHostMsg_NotifyFailedSignedIn message.
77 IPC_MESSAGE_ROUTED1(CredentialManagerMsg_AcknowledgeFailedSignIn
,
80 // Notify the renderer that the browser process has finished processing a
81 // CredentialManagerHostMsg_NotifySignedIn message.
82 IPC_MESSAGE_ROUTED1(CredentialManagerMsg_AcknowledgeSignedIn
,
85 // Notify the renderer that the browser process has finished processing a
86 // CredentialManagerHostMsg_NotifySignedOut message.
87 IPC_MESSAGE_ROUTED1(CredentialManagerMsg_AcknowledgeSignedOut
,
90 // Send a credential to the renderer in response to a
91 // CredentialManagerHostMsg_RequestCredential message.
92 IPC_MESSAGE_ROUTED2(CredentialManagerMsg_SendCredential
,
94 password_manager::CredentialInfo
/* credential */)
96 // Reject the credential request in response to a
97 // CredentialManagerHostMsg_RequestCredential message.
99 CredentialManagerMsg_RejectCredentialRequest
,
100 int /* request_id */,
101 blink::WebCredentialManagerError::ErrorType
/* rejection_reason */)