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

Side by Side Diff: third_party/WebKit/Source/wtf/text/StringImplCF.cpp

Issue 1881983003: Move PartitionAlloc related things into wtf/allocator. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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) 2006, 2009, 2012 Apple Inc. All rights reserved. 2 * Copyright (C) 2006, 2009, 2012 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 20
21 #include "wtf/text/StringImpl.h" 21 #include "wtf/text/StringImpl.h"
22 22
23 #if OS(MACOSX) 23 #if OS(MACOSX)
24 24
25 #include "wtf/Partitions.h"
26 #include "wtf/PassRefPtr.h" 25 #include "wtf/PassRefPtr.h"
27 #include "wtf/RetainPtr.h" 26 #include "wtf/RetainPtr.h"
28 #include "wtf/Threading.h" 27 #include "wtf/Threading.h"
28 #include "wtf/allocator/Partitions.h"
29 #include <CoreFoundation/CoreFoundation.h> 29 #include <CoreFoundation/CoreFoundation.h>
30 30
31 namespace WTF { 31 namespace WTF {
32 32
33 namespace StringWrapperCFAllocator { 33 namespace StringWrapperCFAllocator {
34 34
35 static StringImpl* currentString; 35 static StringImpl* currentString;
36 36
37 static const void* retain(const void* info) 37 static const void* retain(const void* info)
38 { 38 {
(...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after
152 // On StringImpl creation we could check if the allocator is the StringWrapperCF Allocator. 152 // On StringImpl creation we could check if the allocator is the StringWrapperCF Allocator.
153 // If it is, then we could find the original StringImpl and just return that. Bu t to 153 // If it is, then we could find the original StringImpl and just return that. Bu t to
154 // do that we'd have to compute the offset from CFStringRef to the allocated blo ck; 154 // do that we'd have to compute the offset from CFStringRef to the allocated blo ck;
155 // the CFStringRef is *not* at the start of an allocated block. Testing shows 10 00x 155 // the CFStringRef is *not* at the start of an allocated block. Testing shows 10 00x
156 // more calls to createCFString than calls to the create functions with the appr opriate 156 // more calls to createCFString than calls to the create functions with the appr opriate
157 // allocator, so it's probably not urgent optimize that case. 157 // allocator, so it's probably not urgent optimize that case.
158 158
159 } // namespace WTF 159 } // namespace WTF
160 160
161 #endif // OS(MACOSX) 161 #endif // OS(MACOSX)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698