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

Side by Side Diff: third_party/WebKit/Source/platform/text/SegmentedString.h

Issue 1521923002: Make platform/text to use USING_FAST_MALLOC. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 12 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, 2005, 2006, 2007, 2008 Apple Inc. All rights reserved. 2 Copyright (C) 2004, 2005, 2006, 2007, 2008 Apple Inc. All rights reserved.
3 3
4 This library is free software; you can redistribute it and/or 4 This library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Library General Public 5 modify it under the terms of the GNU Library General Public
6 License as published by the Free Software Foundation; either 6 License as published by the Free Software Foundation; either
7 version 2 of the License, or (at your option) any later version. 7 version 2 of the License, or (at your option) any later version.
8 8
9 This library is distributed in the hope that it will be useful, 9 This library is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of 10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 Library General Public License for more details. 12 Library General Public License for more details.
13 13
14 You should have received a copy of the GNU Library General Public License 14 You should have received a copy of the GNU Library General Public License
15 along with this library; see the file COPYING.LIB. If not, write to 15 along with this library; see the file COPYING.LIB. If not, write to
16 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 16 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
17 Boston, MA 02110-1301, USA. 17 Boston, MA 02110-1301, USA.
18 */ 18 */
19 19
20 #ifndef SegmentedString_h 20 #ifndef SegmentedString_h
21 #define SegmentedString_h 21 #define SegmentedString_h
22 22
23 #include "platform/PlatformExport.h" 23 #include "platform/PlatformExport.h"
24 #include "wtf/Allocator.h"
24 #include "wtf/Deque.h" 25 #include "wtf/Deque.h"
25 #include "wtf/text/StringBuilder.h" 26 #include "wtf/text/StringBuilder.h"
26 #include "wtf/text/TextPosition.h" 27 #include "wtf/text/TextPosition.h"
27 #include "wtf/text/WTFString.h" 28 #include "wtf/text/WTFString.h"
28 29
29 namespace blink { 30 namespace blink {
30 31
31 class SegmentedString; 32 class SegmentedString;
32 33
33 class PLATFORM_EXPORT SegmentedSubstring { 34 class PLATFORM_EXPORT SegmentedSubstring {
35 DISALLOW_NEW_EXCEPT_PLACEMENT_NEW();
34 public: 36 public:
35 SegmentedSubstring() 37 SegmentedSubstring()
36 : m_length(0) 38 : m_length(0)
37 , m_doNotExcludeLineNumbers(true) 39 , m_doNotExcludeLineNumbers(true)
38 , m_is8Bit(false) 40 , m_is8Bit(false)
39 { 41 {
40 m_data.string16Ptr = 0; 42 m_data.string16Ptr = 0;
41 } 43 }
42 44
43 SegmentedSubstring(const String& str) 45 SegmentedSubstring(const String& str)
(...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after
168 const LChar* string8Ptr; 170 const LChar* string8Ptr;
169 const UChar* string16Ptr; 171 const UChar* string16Ptr;
170 } m_data; 172 } m_data;
171 int m_length; 173 int m_length;
172 bool m_doNotExcludeLineNumbers; 174 bool m_doNotExcludeLineNumbers;
173 bool m_is8Bit; 175 bool m_is8Bit;
174 String m_string; 176 String m_string;
175 }; 177 };
176 178
177 class PLATFORM_EXPORT SegmentedString { 179 class PLATFORM_EXPORT SegmentedString {
180 DISALLOW_NEW();
178 public: 181 public:
179 SegmentedString() 182 SegmentedString()
180 : m_currentChar(0) 183 : m_currentChar(0)
181 , m_numberOfCharactersConsumedPriorToCurrentString(0) 184 , m_numberOfCharactersConsumedPriorToCurrentString(0)
182 , m_numberOfCharactersConsumedPriorToCurrentLine(0) 185 , m_numberOfCharactersConsumedPriorToCurrentLine(0)
183 , m_currentLine(0) 186 , m_currentLine(0)
184 , m_closed(false) 187 , m_closed(false)
185 , m_empty(true) 188 , m_empty(true)
186 , m_fastPathFlags(NoFastPath) 189 , m_fastPathFlags(NoFastPath)
187 , m_advanceFunc(&SegmentedString::advanceEmpty) 190 , m_advanceFunc(&SegmentedString::advanceEmpty)
(...skipping 223 matching lines...) Expand 10 before | Expand all | Expand 10 after
411 bool m_closed; 414 bool m_closed;
412 bool m_empty; 415 bool m_empty;
413 unsigned char m_fastPathFlags; 416 unsigned char m_fastPathFlags;
414 void (SegmentedString::*m_advanceFunc)(); 417 void (SegmentedString::*m_advanceFunc)();
415 void (SegmentedString::*m_advanceAndUpdateLineNumberFunc)(); 418 void (SegmentedString::*m_advanceAndUpdateLineNumberFunc)();
416 }; 419 };
417 420
418 } 421 }
419 422
420 #endif 423 #endif
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/platform/text/PlatformLocale.h ('k') | third_party/WebKit/Source/platform/text/StringTruncator.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698