Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(207)

Side by Side Diff: components/password_manager/content/common/credential_manager_messages.h

Issue 613993002: Credential Manager: Reject credential request if an outstanding request is pending. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@yay
Patch Set: Rebase. Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // Message definition file, included multiple times, hence no include guard. 5 // Message definition file, included multiple times, hence no include guard.
6 6
7 #include <string> 7 #include <string>
8 #include <vector> 8 #include <vector>
9 9
10 #include "base/strings/string16.h" 10 #include "base/strings/string16.h"
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
80 // Notify the renderer that the browser process has finished processing a 80 // Notify the renderer that the browser process has finished processing a
81 // CredentialManagerHostMsg_NotifySignedOut message. 81 // CredentialManagerHostMsg_NotifySignedOut message.
82 IPC_MESSAGE_ROUTED1(CredentialManagerMsg_AcknowledgeSignedOut, 82 IPC_MESSAGE_ROUTED1(CredentialManagerMsg_AcknowledgeSignedOut,
83 int /* request_id */) 83 int /* request_id */)
84 84
85 // Send a credential to the renderer in response to a 85 // Send a credential to the renderer in response to a
86 // CredentialManagerHostMsg_RequestCredential message. 86 // CredentialManagerHostMsg_RequestCredential message.
87 IPC_MESSAGE_ROUTED2(CredentialManagerMsg_SendCredential, 87 IPC_MESSAGE_ROUTED2(CredentialManagerMsg_SendCredential,
88 int /* request_id */, 88 int /* request_id */,
89 password_manager::CredentialInfo /* credential */) 89 password_manager::CredentialInfo /* credential */)
90
91 // Reject the credential request in response to a
92 // CredentialManagerHostMsg_RequestCredential message.
93 IPC_MESSAGE_ROUTED1(CredentialManagerMsg_RejectCredentialRequest,
94 int /* request_id */)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698