• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // Copyright 2013 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 #ifndef URL_URL_CANON_ICU_H_
6 #define URL_URL_CANON_ICU_H_
7 
8 // ICU integration functions.
9 
10 #include "base/compiler_specific.h"
11 #include "base/component_export.h"
12 #include "base/memory/raw_ptr.h"
13 #include "url/url_canon.h"
14 
15 typedef struct UConverter UConverter;
16 
17 namespace url {
18 
19 // An implementation of CharsetConverter that implementations can use to
20 // interface the canonicalizer with ICU's conversion routines.
COMPONENT_EXPORT(URL)21 class COMPONENT_EXPORT(URL) ICUCharsetConverter : public CharsetConverter {
22  public:
23   // Constructs a converter using an already-existing ICU character set
24   // converter. This converter is NOT owned by this object; the lifetime must
25   // be managed by the creator such that it is alive as long as this is.
26   ICUCharsetConverter(UConverter* converter);
27 
28   ~ICUCharsetConverter() override;
29 
30   void ConvertFromUTF16(std::u16string_view input,
31                         CanonOutput* output) override;
32 
33  private:
34   // The ICU converter, not owned by this class.
35   raw_ptr<UConverter> converter_;
36 };
37 
38 }  // namespace url
39 
40 #endif  // URL_URL_CANON_ICU_H_
41