Index: chromeos/dbus/fake_nfc_record_client.cc |
diff --git a/chromeos/dbus/fake_nfc_record_client.cc b/chromeos/dbus/fake_nfc_record_client.cc |
index c16b3007f774666d05ac12187b008ad5f7b07d9b..33b275400bf8a227759eb93c20b1c0fcffa5db71 100644 |
--- a/chromeos/dbus/fake_nfc_record_client.cc |
+++ b/chromeos/dbus/fake_nfc_record_client.cc |
@@ -4,6 +4,8 @@ |
#include "chromeos/dbus/fake_nfc_record_client.h" |
+#include <stdint.h> |
+ |
#include "base/logging.h" |
#include "chromeos/dbus/dbus_thread_manager.h" |
#include "chromeos/dbus/fake_nfc_device_client.h" |
@@ -295,7 +297,7 @@ bool FakeNfcRecordClient::WriteTagRecord( |
GetStringValue(attributes, nfc_record::kMimeTypeProperty)); |
tag_record_properties_->action.ReplaceValue( |
GetStringValue(attributes, nfc_record::kActionProperty)); |
- tag_record_properties_->size.ReplaceValue(static_cast<uint32>( |
+ tag_record_properties_->size.ReplaceValue(static_cast<uint32_t>( |
GetDoubleValue(attributes, nfc_record::kSizeProperty))); |
SetTagRecordsVisible(false); |