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

Side by Side Diff: util.h

Issue 3771002: power_manager: Send BrightnessChanged signal. (Closed) Base URL: ssh://git@gitrw.chromium.org:9222/power_manager.git
Patch Set: Created 10 years, 2 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « powerman.cc ('k') | util.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2010 The Chromium OS Authors. All rights reserved. 1 // Copyright (c) 2010 The Chromium OS Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef POWER_MANAGER_UTIL_H_ 5 #ifndef POWER_MANAGER_UTIL_H_
6 #define POWER_MANAGER_UTIL_H_ 6 #define POWER_MANAGER_UTIL_H_
7 7
8 namespace power_manager { 8 namespace power_manager {
9 9
10 namespace util { 10 namespace util {
11 11
12 // interface names 12 // interface names
13 extern const char* kLowerPowerManagerInterface; 13 extern const char* kLowerPowerManagerInterface;
14 extern const char* kPowerManagerInterface;
15 14
16 // powerd -> powerm constants 15 // powerd -> powerm constants
17 extern const char* kRequestCleanShutdown; 16 extern const char* kRequestCleanShutdown;
18 extern const char* kSuspendSignal; 17 extern const char* kSuspendSignal;
19 extern const char* kShutdownSignal; 18 extern const char* kShutdownSignal;
20 19
21 // powerm -> powerd constants 20 // powerm -> powerd constants
22 extern const char* kLidClosed; 21 extern const char* kLidClosed;
23 extern const char* kLidOpened; 22 extern const char* kLidOpened;
24 extern const char* kPowerButtonDown; 23 extern const char* kPowerButtonDown;
(...skipping 12 matching lines...) Expand all
37 void SendSignalToPowerM(const char* signal); 36 void SendSignalToPowerM(const char* signal);
38 37
39 // Send a message |signal| to the unprivileged power daemon. 38 // Send a message |signal| to the unprivileged power daemon.
40 void SendSignalToPowerD(const char* signal); 39 void SendSignalToPowerD(const char* signal);
41 40
42 } // namespace util 41 } // namespace util
43 42
44 } // namespace power_manager 43 } // namespace power_manager
45 44
46 #endif // POWER_MANAGER_UTIL_H_ 45 #endif // POWER_MANAGER_UTIL_H_
OLDNEW
« no previous file with comments | « powerman.cc ('k') | util.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698