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

Unified Diff: content/common/power_monitor_messages.h

Issue 17074009: Created multi-process-friendly PowerMonitor interface. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 7 years, 6 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
Index: content/common/power_monitor_messages.h
diff --git a/content/common/power_monitor_messages.h b/content/common/power_monitor_messages.h
new file mode 100644
index 0000000000000000000000000000000000000000..6a7c59f54afab029d812e25cc2a15e741dbe361e
--- /dev/null
+++ b/content/common/power_monitor_messages.h
@@ -0,0 +1,24 @@
+// Copyright (c) 2013 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 file, no include guard.
+
+#include "ipc/ipc_message_macros.h"
+#include "ipc/ipc_param_traits.h"
vandebo (ex-Chrome) 2013/07/02 22:53:12 Are ipc_param_traits.h and ipc_platform_file.h nee
bajones 2013/07/03 20:32:27 It appears not! Deleted.
+#include "ipc/ipc_platform_file.h"
+
+#define IPC_MESSAGE_START PowerMonitorMsgStart
+
+// Messages sent from the browser to the renderer/gpu.
+
+// Notification of a change in power status of the computer, such
+// as from switching between battery and A/C power.
+IPC_MESSAGE_CONTROL1(PowerMonitorMsg_PowerStateChange,
+ bool /* on_battery_power */)
+
+// Notification that the system is suspending.
+IPC_MESSAGE_CONTROL0(PowerMonitorMsg_Suspend)
+
+// Notification that the system is resuming.
+IPC_MESSAGE_CONTROL0(PowerMonitorMsg_Resume)

Powered by Google App Engine
This is Rietveld 408576698