OLD | NEW |
(Empty) | |
| 1 // Copyright 2015 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. |
| 4 |
| 5 // Multiply-included message header, no traditional include guard. |
| 6 |
| 7 #include "ipc/ipc_message_macros.h" |
| 8 |
| 9 #define IPC_MESSAGE_START MemoryMsgStart |
| 10 |
| 11 // Sent to all child processes to enable/disable suppressing memory |
| 12 // notifications. |
| 13 IPC_MESSAGE_CONTROL1(MemoryMsg_SetPressureNotificationsSuppressed, |
| 14 bool /* suppressed */) |
| 15 |
| 16 // Sent to the browser to ack enabling/disabling suppressing memory |
| 17 // notifications. |
| 18 IPC_MESSAGE_CONTROL0(MemoryHostMsg_SetPressureNotificationsSuppressedAck) |
OLD | NEW |