| Index: chromeos/dbus/update_engine_client.cc
|
| diff --git a/chromeos/dbus/update_engine_client.cc b/chromeos/dbus/update_engine_client.cc
|
| index f77c5de41dcdf5913500b68439d97b0420d36d66..1363b78bee10e023ea1979dbb390c78732b0b21d 100644
|
| --- a/chromeos/dbus/update_engine_client.cc
|
| +++ b/chromeos/dbus/update_engine_client.cc
|
| @@ -4,6 +4,8 @@
|
|
|
| #include "chromeos/dbus/update_engine_client.h"
|
|
|
| +#include <stdint.h>
|
| +
|
| #include <algorithm>
|
|
|
| #include "base/bind.h"
|
| @@ -351,7 +353,7 @@ class UpdateEngineClientImpl : public UpdateEngineClient {
|
| void StatusUpdateReceived(dbus::Signal* signal) {
|
| VLOG(1) << "Status update signal received: " << signal->ToString();
|
| dbus::MessageReader reader(signal);
|
| - int64 last_checked_time = 0;
|
| + int64_t last_checked_time = 0;
|
| double progress = 0.0;
|
| std::string current_operation;
|
| std::string new_version;
|
|
|