| // Copyright 2016 The Chromium Authors |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| |
| #import <Foundation/Foundation.h> |
| |
| #include "base/strings/sys_string_conversions.h" |
| #include "components/ntp_tiles/country_code_ios.h" |
| |
| #if !defined(__has_feature) || !__has_feature(objc_arc) |
| #error "This file requires ARC support." |
| #endif |
| |
| std::string ntp_tiles::GetDeviceCountryCode() { |
| NSString* country_code = |
| [NSLocale.currentLocale objectForKey:NSLocaleCountryCode]; |
| |
| return base::SysNSStringToUTF8(country_code); |
| } |