diff options
Diffstat (limited to 'rlz/lib/machine_id.cc')
-rw-r--r-- | rlz/lib/machine_id.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/rlz/lib/machine_id.cc b/rlz/lib/machine_id.cc index b8c10f0..1919d02 100644 --- a/rlz/lib/machine_id.cc +++ b/rlz/lib/machine_id.cc @@ -22,7 +22,7 @@ bool GetMachineId(std::string* machine_id) { return true; } - string16 sid_string; + base::string16 sid_string; int volume_id; if (!GetRawMachineId(&sid_string, &volume_id)) return false; @@ -37,7 +37,7 @@ bool GetMachineId(std::string* machine_id) { namespace testing { -bool GetMachineIdImpl(const string16& sid_string, +bool GetMachineIdImpl(const base::string16& sid_string, int volume_id, std::string* machine_id) { machine_id->clear(); @@ -52,7 +52,7 @@ bool GetMachineIdImpl(const string16& sid_string, // However, the chromebase SHA1 hash function takes only an std::string as // input, so the unicode string needs to be converted to std::string // "as is". - size_t byte_count = sid_string.size() * sizeof(string16::value_type); + size_t byte_count = sid_string.size() * sizeof(base::string16::value_type); const char* buffer = reinterpret_cast<const char*>(sid_string.c_str()); std::string sid_string_buffer(buffer, byte_count); |