local_device_info_util_android.cc 459 B

1234567891011121314151617
  1. // Copyright (c) 2012 The Chromium Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style license that can be
  3. // found in the LICENSE file.
  4. #include <string>
  5. #include "base/android/build_info.h"
  6. namespace syncer {
  7. std::string GetPersonalizableDeviceNameInternal() {
  8. base::android::BuildInfo* android_build_info =
  9. base::android::BuildInfo::GetInstance();
  10. return android_build_info->model();
  11. }
  12. } // namespace syncer