am 2e2dc003: Merge "crash_reporter: Fix path to dbus-send"

* commit '2e2dc0039950014d0948589899517e065a82a8b4':
  crash_reporter: Fix path to dbus-send
This commit is contained in:
Steve Fung 2015-08-21 23:29:35 +00:00 committed by Android Git Automerger
commit 975f85110b

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