1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
|
// Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// Message definition file, included multiple times, hence no include guard.
#include <string>
#include <vector>
#include "base/strings/string16.h"
#include "components/password_manager/core/common/credential_manager_types.h"
#include "content/public/common/common_param_traits.h"
#include "content/public/common/common_param_traits_macros.h"
#include "ipc/ipc_message_macros.h"
#include "ipc/ipc_message_utils.h"
#include "third_party/WebKit/public/platform/WebCredentialManagerError.h"
#include "url/gurl.h"
#define IPC_MESSAGE_START CredentialManagerMsgStart
IPC_ENUM_TRAITS_MAX_VALUE(
password_manager::CredentialType,
password_manager::CredentialType::CREDENTIAL_TYPE_LAST)
IPC_ENUM_TRAITS_MAX_VALUE(blink::WebCredentialManagerError,
blink::WebCredentialManagerErrorLastType)
IPC_STRUCT_TRAITS_BEGIN(password_manager::CredentialInfo)
IPC_STRUCT_TRAITS_MEMBER(type)
IPC_STRUCT_TRAITS_MEMBER(id)
IPC_STRUCT_TRAITS_MEMBER(name)
IPC_STRUCT_TRAITS_MEMBER(icon)
IPC_STRUCT_TRAITS_MEMBER(password)
IPC_STRUCT_TRAITS_MEMBER(federation)
IPC_STRUCT_TRAITS_END()
// ----------------------------------------------------------------------------
// Messages sent from the renderer to the browser
// Passes the notification from 'navigator.credentials.store()' up to
// the browser process in order to (among other things) prompt the user to save
// the credential she used for signin. The browser process will respond with a
// CredentialManagerMsg_AcknowledgeStore message.
IPC_MESSAGE_ROUTED2(CredentialManagerHostMsg_Store,
int /* request_id */,
password_manager::CredentialInfo /* credential */)
// Passes the notification from 'navigator.credentials.requireUserMediation()'
// up to the browser process in order to clear the "zeroclick" bit on that
// origin's stored credentials. The browser process will respond with a
// CredentialManagerMsg_AcknowledgeRequireUserMediation message.
IPC_MESSAGE_ROUTED1(CredentialManagerHostMsg_RequireUserMediation,
int /* request_id */)
// Requests a credential from the browser process in response to a page calling
// 'navigator.credentials.get()'. The browser process will respond with a
// CredentialManagerMsg_SendCredential message.
IPC_MESSAGE_ROUTED3(CredentialManagerHostMsg_RequestCredential,
int /* request_id */,
bool /* zero_click_only */,
std::vector<GURL> /* federations */)
// ----------------------------------------------------------------------------
// Messages sent from the browser to the renderer
// Notify the renderer that the browser process has finished processing a
// CredentialManagerHostMsg_Store message.
IPC_MESSAGE_ROUTED1(CredentialManagerMsg_AcknowledgeStore, int /* request_id */)
// Notify the renderer that the browser process has finished processing a
// CredentialManagerHostMsg_RequireUserMediation message.
IPC_MESSAGE_ROUTED1(CredentialManagerMsg_AcknowledgeRequireUserMediation,
int /* request_id */)
// Send a credential to the renderer in response to a
// CredentialManagerHostMsg_RequestCredential message.
IPC_MESSAGE_ROUTED2(CredentialManagerMsg_SendCredential,
int /* request_id */,
password_manager::CredentialInfo /* credential */)
// Reject the credential request in response to a
// CredentialManagerHostMsg_RequestCredential message.
IPC_MESSAGE_ROUTED2(CredentialManagerMsg_RejectCredentialRequest,
int /* request_id */,
blink::WebCredentialManagerError /* rejection_reason */)
|