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

Unified Diff: powerman.cc

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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « powerd.cc ('k') | util.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: powerman.cc
diff --git a/powerman.cc b/powerman.cc
index beb39b5a19f53c75bda54e94fe58dbc55e15b1cd..822f1ef34a0b7fa2a28406ef586f74d7eea43783 100644
--- a/powerman.cc
+++ b/powerman.cc
@@ -172,7 +172,7 @@ DBusHandlerResult PowerManDaemon::DBusMessageHandler(
util::kRequestCleanShutdown)) {
LOG(INFO) << "Request Clean Shutdown";
util::Launch("initctl emit power-manager-clean-shutdown");
- } else if (dbus_message_is_signal(message, util::kPowerManagerInterface,
+ } else if (dbus_message_is_signal(message, kPowerManagerInterface,
util::kPowerStateChanged)) {
LOG(INFO) << "Power state change event";
const char *state = '\0';
@@ -207,7 +207,7 @@ void PowerManDaemon::DBusNameOwnerChangedHandler(
DBusGProxy*, const gchar* name, const gchar* old_owner,
const gchar* new_owner, void *data) {
PowerManDaemon* daemon = static_cast<PowerManDaemon*>(data);
- if (strcmp(name, util::kPowerManagerInterface) == 0) {
+ if (strcmp(name, kPowerManagerInterface) == 0) {
DLOG(INFO) << "name:" << name << " old_owner:" << old_owner
<< " new_owner:" << new_owner;
daemon->powerd_id_++;
@@ -242,7 +242,7 @@ void PowerManDaemon::RegisterDBusMessageHandler() {
DBusConnection* connection = dbus_g_connection_get_connection(
chromeos::dbus::GetSystemBusConnection().g_connection());
AddDBusMatch(connection, util::kLowerPowerManagerInterface);
- AddDBusMatch(connection, util::kPowerManagerInterface);
+ AddDBusMatch(connection, kPowerManagerInterface);
CHECK(dbus_connection_add_filter(
connection, &DBusMessageHandler, this, NULL));
« no previous file with comments | « powerd.cc ('k') | util.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698