| Index: chromeos/dbus/system_clock_client.cc
|
| diff --git a/chromeos/dbus/system_clock_client.cc b/chromeos/dbus/system_clock_client.cc
|
| index 160c9c11b0e7ccc33a49569b1e95b7cefa98a7fd..047a29c1c2e7c3b0df46fb1dabaaa5e3a4b74ee8 100644
|
| --- a/chromeos/dbus/system_clock_client.cc
|
| +++ b/chromeos/dbus/system_clock_client.cc
|
| @@ -4,7 +4,10 @@
|
|
|
| #include "chromeos/dbus/system_clock_client.h"
|
|
|
| +#include <stdint.h>
|
| +
|
| #include "base/bind.h"
|
| +#include "base/macros.h"
|
| #include "base/observer_list.h"
|
| #include "dbus/bus.h"
|
| #include "dbus/message.h"
|
| @@ -37,7 +40,7 @@ class SystemClockClientImpl : public SystemClockClient {
|
| return observers_.HasObserver(observer);
|
| }
|
|
|
| - void SetTime(int64 time_in_seconds) override {
|
| + void SetTime(int64_t time_in_seconds) override {
|
| // Always try to set the time, because |can_set_time_| may be stale.
|
| dbus::MethodCall method_call(system_clock::kSystemClockInterface,
|
| system_clock::kSystemClockSet);
|
|
|