mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-22 21:36:12 +03:00
net, url: Remove icu
This commit is contained in:
parent
886bb3f71f
commit
fe283ec5e2
@ -1575,13 +1575,18 @@ component("net") {
|
|||||||
if (use_platform_icu_alternatives) {
|
if (use_platform_icu_alternatives) {
|
||||||
if (is_android) {
|
if (is_android) {
|
||||||
# Use ICU alternative on Android.
|
# Use ICU alternative on Android.
|
||||||
sources += [ "base/net_string_util_icu_alternatives_android.cc" ]
|
sources += [
|
||||||
|
"base/filename_util_icu_dummy.cc",
|
||||||
|
"base/net_string_util_icu_alternatives_dummy.cc",
|
||||||
|
]
|
||||||
} else if (is_ios) {
|
} else if (is_ios) {
|
||||||
# Use ICU alternative on iOS.
|
# Use ICU alternative on iOS.
|
||||||
sources += [ "base/net_string_util_icu_alternatives_ios.mm" ]
|
sources += [ "base/net_string_util_icu_alternatives_ios.mm" ]
|
||||||
} else {
|
} else {
|
||||||
assert(false,
|
sources += [
|
||||||
"ICU alternative is not implemented for platform: " + target_os)
|
"base/filename_util_icu_dummy.cc",
|
||||||
|
"base/net_string_util_icu_alternatives_dummy.cc",
|
||||||
|
]
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
# Use ICU.
|
# Use ICU.
|
||||||
|
44
src/net/base/filename_util_icu_dummy.cc
Normal file
44
src/net/base/filename_util_icu_dummy.cc
Normal file
@ -0,0 +1,44 @@
|
|||||||
|
// Copyright 2014 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 "net/base/filename_util.h"
|
||||||
|
|
||||||
|
#include "base/files/file_path.h"
|
||||||
|
#include "base/notreached.h"
|
||||||
|
|
||||||
|
class GURL;
|
||||||
|
|
||||||
|
namespace net {
|
||||||
|
|
||||||
|
bool IsSafePortablePathComponent(const base::FilePath& component) {
|
||||||
|
NOTIMPLEMENTED();
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
bool IsSafePortableRelativePath(const base::FilePath& path) {
|
||||||
|
NOTIMPLEMENTED();
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
std::u16string GetSuggestedFilename(const GURL& url,
|
||||||
|
const std::string& content_disposition,
|
||||||
|
const std::string& referrer_charset,
|
||||||
|
const std::string& suggested_name,
|
||||||
|
const std::string& mime_type,
|
||||||
|
const std::string& default_name) {
|
||||||
|
NOTIMPLEMENTED();
|
||||||
|
return {};
|
||||||
|
}
|
||||||
|
|
||||||
|
base::FilePath GenerateFileName(const GURL& url,
|
||||||
|
const std::string& content_disposition,
|
||||||
|
const std::string& referrer_charset,
|
||||||
|
const std::string& suggested_name,
|
||||||
|
const std::string& mime_type,
|
||||||
|
const std::string& default_file_name) {
|
||||||
|
NOTIMPLEMENTED();
|
||||||
|
return {};
|
||||||
|
}
|
||||||
|
|
||||||
|
} // namespace net
|
44
src/net/base/net_string_util_icu_alternatives_dummy.cc
Normal file
44
src/net/base/net_string_util_icu_alternatives_dummy.cc
Normal file
@ -0,0 +1,44 @@
|
|||||||
|
// Copyright 2014 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 "net/base/net_string_util.h"
|
||||||
|
|
||||||
|
#include "base/notreached.h"
|
||||||
|
#include "base/strings/string_piece.h"
|
||||||
|
|
||||||
|
namespace net {
|
||||||
|
|
||||||
|
const char* const kCharsetLatin1 = "";
|
||||||
|
|
||||||
|
bool ConvertToUtf8(base::StringPiece text, const char* charset,
|
||||||
|
std::string* output) {
|
||||||
|
NOTIMPLEMENTED();
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
bool ConvertToUtf8AndNormalize(base::StringPiece text, const char* charset,
|
||||||
|
std::string* output) {
|
||||||
|
NOTIMPLEMENTED();
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
bool ConvertToUTF16(base::StringPiece text, const char* charset,
|
||||||
|
std::u16string* output) {
|
||||||
|
NOTIMPLEMENTED();
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
bool ConvertToUTF16WithSubstitutions(base::StringPiece text,
|
||||||
|
const char* charset,
|
||||||
|
std::u16string* output) {
|
||||||
|
NOTIMPLEMENTED();
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
bool ToUpper(base::StringPiece16 str, std::u16string* output) {
|
||||||
|
NOTIMPLEMENTED();
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
} // namespace net
|
@ -69,19 +69,11 @@ component("url") {
|
|||||||
# ICU support.
|
# ICU support.
|
||||||
if (use_platform_icu_alternatives) {
|
if (use_platform_icu_alternatives) {
|
||||||
if (is_android) {
|
if (is_android) {
|
||||||
sources += [ "url_idna_icu_alternatives_android.cc" ]
|
sources += [ "url_canon_icu_alternatives_dummy.cc" ]
|
||||||
deps += [
|
|
||||||
":buildflags",
|
|
||||||
":url_java",
|
|
||||||
":url_jni_headers",
|
|
||||||
"//base",
|
|
||||||
"//base/third_party/dynamic_annotations",
|
|
||||||
]
|
|
||||||
} else if (is_ios) {
|
} else if (is_ios) {
|
||||||
sources += [ "url_idna_icu_alternatives_ios.mm" ]
|
sources += [ "url_idna_icu_alternatives_ios.mm" ]
|
||||||
} else {
|
} else {
|
||||||
assert(false,
|
sources += [ "url_canon_icu_alternatives_dummy.cc" ]
|
||||||
"ICU alternative is not implemented for platform: " + target_os)
|
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
# Use ICU.
|
# Use ICU.
|
||||||
|
15
src/url/url_canon_icu_alternatives_dummy.cc
Normal file
15
src/url/url_canon_icu_alternatives_dummy.cc
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
// Copyright 2013 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 "base/notreached.h"
|
||||||
|
#include "url/url_canon.h"
|
||||||
|
|
||||||
|
namespace url {
|
||||||
|
|
||||||
|
bool IDNToASCII(const char16_t* src, int src_len, CanonOutputW* output) {
|
||||||
|
NOTIMPLEMENTED();
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
} // namespace url
|
Loading…
Reference in New Issue
Block a user