| Index: chromeos/network/geolocation_handler.h
|
| diff --git a/chromeos/network/geolocation_handler.h b/chromeos/network/geolocation_handler.h
|
| index 15b291e074ae54b3a1f58c2ceb88078041417d1b..5720364b48b5aa6bb96cbc0cff30326ea18d2bda 100644
|
| --- a/chromeos/network/geolocation_handler.h
|
| +++ b/chromeos/network/geolocation_handler.h
|
| @@ -5,6 +5,9 @@
|
| #ifndef CHROMEOS_NETWORK_GEOLOCATION_HANDLER_H_
|
| #define CHROMEOS_NETWORK_GEOLOCATION_HANDLER_H_
|
|
|
| +#include <stdint.h>
|
| +
|
| +#include "base/macros.h"
|
| #include "base/memory/weak_ptr.h"
|
| #include "base/time/time.h"
|
| #include "chromeos/dbus/dbus_method_call_status.h"
|
| @@ -37,7 +40,8 @@ class CHROMEOS_EXPORT GeolocationHandler : public ShillPropertyChangedObserver {
|
| // This sends a request for wifi access point data. If data is already
|
| // available, returns |true|, fills |access_points| with the latest access
|
| // point data, and sets |age_ms| to the time since the last update in MS.
|
| - bool GetWifiAccessPoints(WifiAccessPointVector* access_points, int64* age_ms);
|
| + bool GetWifiAccessPoints(WifiAccessPointVector* access_points,
|
| + int64_t* age_ms);
|
|
|
| bool wifi_enabled() const { return wifi_enabled_; }
|
|
|
|
|