| OLD | NEW |
| 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 Loading... |
| 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 */) |
| OLD | NEW |