components/crash/core/common/BUILD.gn
[chromium-dfly.git] / components / sync_device_info / local_device_info_util_ios.mm
1 // Copyright 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
5 #import <UIKit/UIKit.h>
6
7 #include <string>
8
9 #include "base/strings/sys_string_conversions.h"
10
11 namespace syncer {
12
13 std::string GetPersonalizableDeviceNameInternal() {
14   return base::SysNSStringToUTF8([[UIDevice currentDevice] name]);
15 }
16
17 }  // namespace syncer