Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(335)

Unified Diff: net/base/net_string_util.h

Issue 252733002: Consolidate most of net/'s icu_string_conversions.h dependencies. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Fix mac Created 6 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: net/base/net_string_util.h
===================================================================
--- net/base/net_string_util.h (revision 0)
+++ net/base/net_string_util.h (revision 0)
@@ -0,0 +1,43 @@
+// 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.
+
+#ifndef NET_BASE_NET_STRING_UTIL_H__
+#define NET_BASE_NET_STRING_UTIL_H__
+
+#include <string>
+
+#include "base/strings/string16.h"
+
+// String conversion functions. By default, they're implemented with ICU, but
+// when building with USE_ICU_ALTERNATIVES, they use platform functions instead.
+
+namespace net {
+
+// Converts |text| using |charset| to UTF-8, and writes it to |output|.
+// On failure, returns false and |output| is cleared.
+bool ConvertToUtf8(const std::string& text, const char* charset,
+ std::string* output);
+
+// Converts |text| using |charset| to UTF-8, normalizes the result, and writes
+// it to |output|. On failure, returns false and |output| is cleared.
+bool ConvertToUtf8AndNormalize(const std::string& text, const char* charset,
+ std::string* output);
+
+// Converts |text| encoded in Latin-1 to UTF-8, normalizes the result, and
+// writes it to |output|. On failure, returns false and |output| is cleared.
+bool ConvertLatin1ToUtf8AndNormalize(const std::string& text,
+ std::string* output);
+
+// Converts |text| using |charset| to UTF-16, and writes it to |output|.
+// On failure, returns false and |output| is cleared.
+bool ConvertToUTF16(const std::string& text, const char* charset,
+ base::string16* output);
+
+// Converts |text| encoded in Latin-1 to UTF-16, and writes it to |output|.
+// On failure, returns false and |output| is cleared.
+bool ConvertLatin1ToUTF16(const std::string& text, base::string16* output);
+
+} // namespace net
+
+#endif // NET_BASE_NET_STRING_UTIL_H__
Property changes on: net\base\net_string_util.h
___________________________________________________________________
Added: svn:eol-style
+ LF

Powered by Google App Engine
This is Rietveld 408576698