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

Unified Diff: util.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 | « util.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: util.cc
diff --git a/util.cc b/util.cc
index 89afb4b2b60f3a2b3ea812881802795e0730f65b..0eea818abab7463869f7db0cc333840b74ae4d4f 100644
--- a/util.cc
+++ b/util.cc
@@ -16,7 +16,6 @@ namespace power_manager {
namespace util {
// interface names
-const char* kPowerManagerInterface = "org.chromium.PowerManager";
const char* kLowerPowerManagerInterface = "org.chromium.LowerPowerManager";
// powerd -> powerm signals
@@ -88,10 +87,10 @@ void SendSignalToPowerD(const char* signal_name) {
LOG(INFO) << "Sending signal '" << signal_name << "' to PowerManager:";
chromeos::dbus::Proxy proxy(chromeos::dbus::GetSystemBusConnection(),
"/",
- power_manager::kPowerManagerInterface);
+ kPowerManagerInterface);
DBusMessage* signal = ::dbus_message_new_signal(
"/",
- power_manager::kPowerManagerInterface,
+ kPowerManagerInterface,
signal_name);
CHECK(signal);
::dbus_g_proxy_send(proxy.gproxy(), signal, NULL);
« no previous file with comments | « util.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698