Index: content/common/memory_messages.h |
diff --git a/content/common/memory_messages.h b/content/common/memory_messages.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..7bdfca6839b252c9e713f68093b6f3189e322e0f |
--- /dev/null |
+++ b/content/common/memory_messages.h |
@@ -0,0 +1,18 @@ |
+// Copyright 2015 The Chromium Authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+// Multiply-included message header, no traditional include guard. |
+ |
+#include "ipc/ipc_message_macros.h" |
+ |
+#define IPC_MESSAGE_START MemoryMsgStart |
+ |
+// Sent to all child processes to enable/disable suppressing memory |
+// notifications. |
+IPC_MESSAGE_CONTROL1(MemoryMsg_SetPressureNotificationsSuppressed, |
+ bool /* suppressed */) |
+ |
+// Sent to the browser to ack enabling/disabling suppressing memory |
+// notifications. |
+IPC_MESSAGE_CONTROL0(MemoryHostMsg_SetPressureNotificationsSuppressedAck) |