Merge "crash_reporter: Fix path to dbus-send"

This commit is contained in:
Steve Fung 2015-08-21 23:23:34 +00:00 committed by Gerrit Code Review
commit 2e2dc00399

View file

@ -74,7 +74,7 @@ static void CountUncleanShutdown() {
static void CountUserCrash() { static void CountUserCrash() {
SendCrashMetrics(kCrashKindUser, "user"); SendCrashMetrics(kCrashKindUser, "user");
std::string command = StringPrintf( std::string command = StringPrintf(
"/usr/bin/dbus-send --type=signal --system / \"%s\" &", "/system/bin/dbus-send --type=signal --system / \"%s\" &",
kUserCrashSignal); kUserCrashSignal);
// Announce through D-Bus whenever a user crash happens. This is // Announce through D-Bus whenever a user crash happens. This is
// used by the metrics daemon to log active use time between // used by the metrics daemon to log active use time between