Commit 4788b278 authored by tsepez's avatar tsepez Committed by Commit bot

Make the ipclist utility aware of two new message files.

Review URL: https://codereview.chromium.org/551043004

Cr-Commit-Position: refs/heads/master@{#294452}
parent 342414e8
...@@ -18,7 +18,7 @@ ...@@ -18,7 +18,7 @@
#define IPC_MESSAGE_START CredentialManagerMsgStart #define IPC_MESSAGE_START CredentialManagerMsgStart
IPC_ENUM_TRAITS_MAX_VALUE(password_manager::CredentialType, IPC_ENUM_TRAITS_MAX_VALUE(password_manager::CredentialType,
password_manager::CREDENTIAL_TYPE_LAST); password_manager::CREDENTIAL_TYPE_LAST)
IPC_STRUCT_TRAITS_BEGIN(password_manager::CredentialInfo) IPC_STRUCT_TRAITS_BEGIN(password_manager::CredentialInfo)
IPC_STRUCT_TRAITS_MEMBER(type) IPC_STRUCT_TRAITS_MEMBER(type)
...@@ -70,17 +70,17 @@ IPC_MESSAGE_ROUTED3(CredentialManagerHostMsg_RequestCredential, ...@@ -70,17 +70,17 @@ IPC_MESSAGE_ROUTED3(CredentialManagerHostMsg_RequestCredential,
// Notify the renderer that the browser process has finished processing a // Notify the renderer that the browser process has finished processing a
// CredentialManagerHostMsg_NotifyFailedSignedIn message. // CredentialManagerHostMsg_NotifyFailedSignedIn message.
IPC_MESSAGE_ROUTED1(CredentialManagerMsg_AcknowledgeFailedSignIn, IPC_MESSAGE_ROUTED1(CredentialManagerMsg_AcknowledgeFailedSignIn,
int /* request_id */); int /* request_id */)
// Notify the renderer that the browser process has finished processing a // Notify the renderer that the browser process has finished processing a
// CredentialManagerHostMsg_NotifySignedIn message. // CredentialManagerHostMsg_NotifySignedIn message.
IPC_MESSAGE_ROUTED1(CredentialManagerMsg_AcknowledgeSignedIn, IPC_MESSAGE_ROUTED1(CredentialManagerMsg_AcknowledgeSignedIn,
int /* request_id */); int /* request_id */)
// Notify the renderer that the browser process has finished processing a // Notify the renderer that the browser process has finished processing a
// CredentialManagerHostMsg_NotifySignedOut message. // CredentialManagerHostMsg_NotifySignedOut message.
IPC_MESSAGE_ROUTED1(CredentialManagerMsg_AcknowledgeSignedOut, IPC_MESSAGE_ROUTED1(CredentialManagerMsg_AcknowledgeSignedOut,
int /* request_id */); int /* request_id */)
// Send a credential to the renderer in response to a // Send a credential to the renderer in response to a
// CredentialManagerHostMsg_RequestCredential message. // CredentialManagerHostMsg_RequestCredential message.
......
...@@ -9,6 +9,9 @@ ...@@ -9,6 +9,9 @@
{ {
'target_name': 'ipclist', 'target_name': 'ipclist',
'type': 'executable', 'type': 'executable',
'defines': [
'FULL_SAFE_BROWSING',
],
'dependencies': [ 'dependencies': [
'../message_lib/message_lib.gyp:ipc_message_lib', '../message_lib/message_lib.gyp:ipc_message_lib',
], ],
......
...@@ -2,6 +2,7 @@ include_rules = [ ...@@ -2,6 +2,7 @@ include_rules = [
"+chrome/common", "+chrome/common",
"+components/autofill/content/common", "+components/autofill/content/common",
"+components/nacl/common", "+components/nacl/common",
"+components/password_manager/content/common",
"+components/pdf/common", "+components/pdf/common",
"+components/tracing", "+components/tracing",
"+components/translate", "+components/translate",
......
...@@ -16,6 +16,7 @@ ...@@ -16,6 +16,7 @@
#include "chrome/common/all_messages.h" #include "chrome/common/all_messages.h"
#include "components/autofill/content/common/autofill_messages.h" #include "components/autofill/content/common/autofill_messages.h"
#include "components/nacl/common/nacl_host_messages.h" #include "components/nacl/common/nacl_host_messages.h"
#include "components/password_manager/content/common/credential_manager_messages.h"
#include "components/pdf/common/pdf_messages.h" #include "components/pdf/common/pdf_messages.h"
#include "components/tracing/tracing_messages.h" #include "components/tracing/tracing_messages.h"
#include "components/translate/content/common/translate_messages.h" #include "components/translate/content/common/translate_messages.h"
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment