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 // This file contains IPC messages for controlling memory pressure handling |
| 6 // in child processes for the purposes of enforcing consistent conditions |
| 7 // across memory measurements. |
| 8 |
| 9 // Multiply-included message header, no traditional include guard. |
| 10 |
| 11 #include "ipc/ipc_message_macros.h" |
| 12 |
| 13 #define IPC_MESSAGE_START MemoryMsgStart |
| 14 |
| 15 // Sent to all child processes to enable/disable suppressing memory |
| 16 // notifications. |
| 17 IPC_MESSAGE_CONTROL1(MemoryMsg_SetPressureNotificationsSuppressed, |
| 18 bool /* suppressed */) |
OLD | NEW |