Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1983)

Unified Diff: content/common/memory_messages.h

Issue 1332583002: Architecture for cross-process memory notification suppressing (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add comment explaining the use of scoped_ptr in the browser test matcher Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/common/content_message_generator.h ('k') | content/content_browser.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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..a81eaf871491fb2e8bbf1af62e69dcaca94afd3d
--- /dev/null
+++ b/content/common/memory_messages.h
@@ -0,0 +1,22 @@
+// 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.
+
+// This file contains IPC messages for controlling memory pressure handling
+// in child processes for the purposes of enforcing consistent conditions
+// across memory measurements.
+
+// Multiply-included message header, no traditional include guard.
+
+#include "ipc/ipc_message_macros.h"
+#include "content/common/content_export.h"
+
+#undef IPC_MESSAGE_EXPORT
+#define IPC_MESSAGE_EXPORT CONTENT_EXPORT
+
+#define IPC_MESSAGE_START MemoryMsgStart
+
+// Sent to all child processes to enable/disable suppressing memory
+// notifications.
+IPC_MESSAGE_CONTROL1(MemoryMsg_SetPressureNotificationsSuppressed,
+ bool /* suppressed */)
« no previous file with comments | « content/common/content_message_generator.h ('k') | content/content_browser.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698