Index: content/browser/geolocation/wifi_data_provider_chromeos.cc |
diff --git a/content/browser/geolocation/wifi_data_provider_chromeos.cc b/content/browser/geolocation/wifi_data_provider_chromeos.cc |
index 18d84bad10904de93ce1c8f21d7b2aa8e5444b4e..6060ec1bdbb9ba69b51cf6786f35043a578bd410 100644 |
--- a/content/browser/geolocation/wifi_data_provider_chromeos.cc |
+++ b/content/browser/geolocation/wifi_data_provider_chromeos.cc |
@@ -6,6 +6,8 @@ |
#include "content/browser/geolocation/wifi_data_provider_chromeos.h" |
+#include <stdint.h> |
+ |
#include "base/bind.h" |
#include "base/strings/utf_string_conversions.h" |
#include "chromeos/network/geolocation_handler.h" |
@@ -144,7 +146,7 @@ bool WifiDataProviderChromeOs::GetAccessPointData( |
return true; |
chromeos::WifiAccessPointVector access_points; |
- int64 age_ms = 0; |
+ int64_t age_ms = 0; |
if (!chromeos::NetworkHandler::Get()->geolocation_handler()-> |
GetWifiAccessPoints(&access_points, &age_ms)) { |
return false; |