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

Side by Side Diff: third_party/WebKit/Source/wtf/text/TextCodec.h

Issue 2050123002: Remove OwnPtr from Blink. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: First attempt to land. Created 4 years, 6 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2004, 2006 Apple Computer, Inc. All rights reserved. 2 * Copyright (C) 2004, 2006 Apple Computer, Inc. All rights reserved.
3 * Copyright (C) 2006 Alexey Proskuryakov <ap@nypop.com> 3 * Copyright (C) 2006 Alexey Proskuryakov <ap@nypop.com>
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions 6 * modification, are permitted provided that the following conditions
7 * are met: 7 * are met:
8 * 1. Redistributions of source code must retain the above copyright 8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright 10 * 2. Redistributions in binary form must reproduce the above copyright
(...skipping 11 matching lines...) Expand all
22 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 22 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 23 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
24 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 24 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25 */ 25 */
26 26
27 #ifndef TextCodec_h 27 #ifndef TextCodec_h
28 #define TextCodec_h 28 #define TextCodec_h
29 29
30 #include "wtf/Forward.h" 30 #include "wtf/Forward.h"
31 #include "wtf/Noncopyable.h" 31 #include "wtf/Noncopyable.h"
32 #include "wtf/PassOwnPtr.h"
33 #include "wtf/text/Unicode.h" 32 #include "wtf/text/Unicode.h"
34 #include "wtf/text/WTFString.h" 33 #include "wtf/text/WTFString.h"
34 #include <memory>
35 35
36 namespace WTF { 36 namespace WTF {
37 37
38 class TextEncoding; 38 class TextEncoding;
39 39
40 // Specifies what will happen when a character is encountered that is 40 // Specifies what will happen when a character is encountered that is
41 // not encodable in the character set. 41 // not encodable in the character set.
42 enum UnencodableHandling { 42 enum UnencodableHandling {
43 // Substitutes the replacement character "?". 43 // Substitutes the replacement character "?".
44 QuestionMarksForUnencodables, 44 QuestionMarksForUnencodables,
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
91 virtual CString encode(const LChar*, size_t length, UnencodableHandling) = 0 ; 91 virtual CString encode(const LChar*, size_t length, UnencodableHandling) = 0 ;
92 92
93 // Fills a null-terminated string representation of the given 93 // Fills a null-terminated string representation of the given
94 // unencodable character into the given replacement buffer. 94 // unencodable character into the given replacement buffer.
95 // The length of the string (not including the null) will be returned. 95 // The length of the string (not including the null) will be returned.
96 static int getUnencodableReplacement(unsigned codePoint, UnencodableHandling , UnencodableReplacementArray); 96 static int getUnencodableReplacement(unsigned codePoint, UnencodableHandling , UnencodableReplacementArray);
97 }; 97 };
98 98
99 typedef void (*EncodingNameRegistrar)(const char* alias, const char* name); 99 typedef void (*EncodingNameRegistrar)(const char* alias, const char* name);
100 100
101 typedef PassOwnPtr<TextCodec> (*NewTextCodecFunction)(const TextEncoding&, const void* additionalData); 101 typedef std::unique_ptr<TextCodec> (*NewTextCodecFunction)(const TextEncoding&, const void* additionalData);
102 typedef void (*TextCodecRegistrar)(const char* name, NewTextCodecFunction, const void* additionalData); 102 typedef void (*TextCodecRegistrar)(const char* name, NewTextCodecFunction, const void* additionalData);
103 103
104 } // namespace WTF 104 } // namespace WTF
105 105
106 using WTF::TextCodec; 106 using WTF::TextCodec;
107 107
108 #endif // TextCodec_h 108 #endif // TextCodec_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/wtf/text/StringImpl.cpp ('k') | third_party/WebKit/Source/wtf/text/TextCodecICU.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698