Upload upstream chromium 108.0.5359.1
[platform/framework/web/chromium-efl.git] / url / url_idna_icu_alternatives_ios.mm
1 // Copyright 2016 The Chromium Authors
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include <string.h>
6
7 #include <ostream>
8 #include <string>
9
10 #include "base/strings/string_piece.h"
11 #include "base/strings/string_util.h"
12 #include "base/strings/utf_string_conversions.h"
13 #include "url/url_canon_internal.h"
14
15 namespace url {
16
17 // Only allow ASCII to avoid ICU dependency. Use NSString+IDN
18 // to convert non-ASCII URL prior to passing to API.
19 bool IDNToASCII(const char16_t* src, int src_len, CanonOutputW* output) {
20   if (base::IsStringASCII(base::StringPiece16(src, src_len))) {
21     output->Append(src, src_len);
22     return true;
23   }
24   DCHECK(false) << "IDN URL support is not available.";
25   return false;
26 }
27
28 }  // namespace url