Blink roll 148954:148987
[chromium-blink-merge.git] / url / url_canon_icu.h
blobd8eacbfeca7f069d03e18686ecfcf91f4f107bd1
1 // Copyright 2013 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.
5 #ifndef URL_URL_CANON_ICU_H_
6 #define URL_URL_CANON_ICU_H_
8 // ICU integration functions.
10 #include "url/url_canon.h"
12 typedef struct UConverter UConverter;
14 namespace url_canon {
16 // An implementation of CharsetConverter that implementations can use to
17 // interface the canonicalizer with ICU's conversion routines.
18 class ICUCharsetConverter : public CharsetConverter {
19 public:
20 // Constructs a converter using an already-existing ICU character set
21 // converter. This converter is NOT owned by this object; the lifetime must
22 // be managed by the creator such that it is alive as long as this is.
23 ICUCharsetConverter(UConverter* converter);
25 virtual ~ICUCharsetConverter();
27 virtual void ConvertFromUTF16(const char16* input,
28 int input_len,
29 CanonOutput* output);
31 private:
32 // The ICU converter, not owned by this class.
33 UConverter* converter_;
36 } // namespace url_canon
38 #endif // URL_URL_CANON_ICU_H_