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

Side by Side Diff: Source/wtf/text/TextEncoding.h

Issue 25870005: Canonical name change: windows-949 => EUC-KR (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: update legacy-encode result and cl description Created 7 years, 2 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 | Annotate | Revision Log
« no previous file with comments | « Source/wtf/text/TextCodecICU.cpp ('k') | Source/wtf/text/TextEncoding.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 * Copyright (C) 2004, 2006, 2007, 2008, 2009 Apple Inc. All rights reserved. 2 * Copyright (C) 2004, 2006, 2007, 2008, 2009 Apple Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 1. Redistributions of source code must retain the above copyright 7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer. 8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright 9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the 10 * notice, this list of conditions and the following disclaimer in the
(...skipping 23 matching lines...) Expand all
34 namespace WTF { 34 namespace WTF {
35 35
36 class WTF_EXPORT TextEncoding { 36 class WTF_EXPORT TextEncoding {
37 public: 37 public:
38 TextEncoding() : m_name(0) { } 38 TextEncoding() : m_name(0) { }
39 TextEncoding(const char* name); 39 TextEncoding(const char* name);
40 TextEncoding(const String& name); 40 TextEncoding(const String& name);
41 41
42 bool isValid() const { return m_name; } 42 bool isValid() const { return m_name; }
43 const char* name() const { return m_name; } 43 const char* name() const { return m_name; }
44 const char* domName() const; // name exposed via DOM
45 bool usesVisualOrdering() const; 44 bool usesVisualOrdering() const;
46 bool isJapanese() const; 45 bool isJapanese() const;
47 46
48 bool hasTrivialDisplayString() const { return m_backslashAsCurrencySymbol == '\\'; } 47 bool hasTrivialDisplayString() const { return m_backslashAsCurrencySymbol == '\\'; }
49 48
50 PassRefPtr<StringImpl> displayString(PassRefPtr<StringImpl> str) const 49 PassRefPtr<StringImpl> displayString(PassRefPtr<StringImpl> str) const
51 { 50 {
52 if (hasTrivialDisplayString() || !str) 51 if (hasTrivialDisplayString() || !str)
53 return str; 52 return str;
54 return str->replace('\\', m_backslashAsCurrencySymbol); 53 return str->replace('\\', m_backslashAsCurrencySymbol);
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
107 using WTF::ASCIIEncoding; 106 using WTF::ASCIIEncoding;
108 using WTF::Latin1Encoding; 107 using WTF::Latin1Encoding;
109 using WTF::UTF16BigEndianEncoding; 108 using WTF::UTF16BigEndianEncoding;
110 using WTF::UTF16LittleEndianEncoding; 109 using WTF::UTF16LittleEndianEncoding;
111 using WTF::UTF32BigEndianEncoding; 110 using WTF::UTF32BigEndianEncoding;
112 using WTF::UTF32LittleEndianEncoding; 111 using WTF::UTF32LittleEndianEncoding;
113 using WTF::UTF8Encoding; 112 using WTF::UTF8Encoding;
114 using WTF::WindowsLatin1Encoding; 113 using WTF::WindowsLatin1Encoding;
115 114
116 #endif // TextEncoding_h 115 #endif // TextEncoding_h
OLDNEW
« no previous file with comments | « Source/wtf/text/TextCodecICU.cpp ('k') | Source/wtf/text/TextEncoding.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698