blob: 837bc5f2da566ec8b14d627679f8f735d49afa9e [file] [log] [blame]
// Copyright 2015 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "ash/constants/devicetype.h"
#include "ash/constants/ash_switches.h"
#include "base/command_line.h"
#include "base/hash/hash.h"
#include "base/logging.h"
#include "base/strings/string_split.h"
#include "base/strings/stringprintf.h"
#include "base/system/sys_info.h"
#include "chromeos/constants/devicetype.h"
namespace ash {
std::string GetDeviceBluetoothName(const std::string& bluetooth_address) {
const char* name = "Chromebook";
switch (chromeos::GetDeviceType()) {
case chromeos::DeviceType::kChromebase:
name = "Chromebase";
break;
case chromeos::DeviceType::kChromebit:
name = "Chromebit";
break;
case chromeos::DeviceType::kChromebook:
name = "Chromebook";
break;
case chromeos::DeviceType::kChromebox:
name = "Chromebox";
break;
case chromeos::DeviceType::kUnknown:
default:
break;
}
// Take the lower 2 bytes of hashed |bluetooth_address| and combine it with
// the device type to create a more identifiable device name.
return base::StringPrintf("%s_%04X", name,
base::PersistentHash(bluetooth_address) & 0xFFFF);
}
bool IsGoogleBrandedDevice() {
// Refer to comment describing base::SysInfo::GetLsbReleaseBoard for why
// splitting the Lsb Release Board string is needed.
std::vector<std::string> board =
base::SplitString(base::SysInfo::GetLsbReleaseBoard(), "-",
base::TRIM_WHITESPACE, base::SPLIT_WANT_NONEMPTY);
if (board.empty())
return false;
// TODO(crbug/966108): This method of determining board names will leak
// hardware codenames. Unreleased boards should NOT be included in this list.
return board[0] == "nocturne" || board[0] == "eve" || board[0] == "atlas" ||
board[0] == "samus";
}
} // namespace ash