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

Side by Side Diff: source/i18n/csr2022.h

Issue 1621843002: ICU 56 update step 1 (Closed) Base URL: https://chromium.googlesource.com/chromium/deps/icu.git@561
Patch Set: Created 4 years, 11 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 unified diff | Download patch
« no previous file with comments | « source/i18n/csdetect.cpp ('k') | source/i18n/csr2022.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 ********************************************************************** 2 **********************************************************************
3 * Copyright (C) 2005-2012, International Business Machines 3 * Copyright (C) 2005-2015, International Business Machines
4 * Corporation and others. All Rights Reserved. 4 * Corporation and others. All Rights Reserved.
5 ********************************************************************** 5 **********************************************************************
6 */ 6 */
7 7
8 #ifndef __CSR2022_H 8 #ifndef __CSR2022_H
9 #define __CSR2022_H 9 #define __CSR2022_H
10 10
11 #include "unicode/utypes.h" 11 #include "unicode/utypes.h"
12 12
13 #if !UCONFIG_NO_CONVERSION 13 #if !UCONFIG_NO_CONVERSION
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
58 class CharsetRecog_2022JP :public CharsetRecog_2022 58 class CharsetRecog_2022JP :public CharsetRecog_2022
59 { 59 {
60 public: 60 public:
61 virtual ~CharsetRecog_2022JP(); 61 virtual ~CharsetRecog_2022JP();
62 62
63 const char *getName() const; 63 const char *getName() const;
64 64
65 UBool match(InputText *textIn, CharsetMatch *results) const; 65 UBool match(InputText *textIn, CharsetMatch *results) const;
66 }; 66 };
67 67
68 #if !UCONFIG_NO_NON_HTML5_CONVERSION 68 #if !UCONFIG_ONLY_HTML_CONVERSION
69 class CharsetRecog_2022KR :public CharsetRecog_2022 { 69 class CharsetRecog_2022KR :public CharsetRecog_2022 {
70 public: 70 public:
71 virtual ~CharsetRecog_2022KR(); 71 virtual ~CharsetRecog_2022KR();
72 72
73 const char *getName() const; 73 const char *getName() const;
74 74
75 UBool match(InputText *textIn, CharsetMatch *results) const; 75 UBool match(InputText *textIn, CharsetMatch *results) const;
76 76
77 }; 77 };
78 78
79 class CharsetRecog_2022CN :public CharsetRecog_2022 79 class CharsetRecog_2022CN :public CharsetRecog_2022
80 { 80 {
81 public: 81 public:
82 virtual ~CharsetRecog_2022CN(); 82 virtual ~CharsetRecog_2022CN();
83 83
84 const char* getName() const; 84 const char* getName() const;
85 85
86 UBool match(InputText *textIn, CharsetMatch *results) const; 86 UBool match(InputText *textIn, CharsetMatch *results) const;
87 }; 87 };
88 #endif 88 #endif
89 89
90 U_NAMESPACE_END 90 U_NAMESPACE_END
91 91
92 #endif 92 #endif
93 #endif /* __CSR2022_H */ 93 #endif /* __CSR2022_H */
OLDNEW
« no previous file with comments | « source/i18n/csdetect.cpp ('k') | source/i18n/csr2022.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698