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

Side by Side Diff: content/common/mac/font_loader.mm

Issue 16917011: mac: Replace base::mac::ScopedCFTypeRef with base::ScopedCFTypeRef. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: with fixed off-by-1 in git-clang-format Created 7 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 | Annotate | Revision Log
« no previous file with comments | « content/common/gpu/image_transport_surface_mac.cc ('k') | content/common/sandbox_mac.mm » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "content/common/mac/font_loader.h" 5 #include "content/common/mac/font_loader.h"
6 6
7 #import <Cocoa/Cocoa.h> 7 #import <Cocoa/Cocoa.h>
8 8
9 #include "base/basictypes.h" 9 #include "base/basictypes.h"
10 #include "base/file_util.h" 10 #include "base/file_util.h"
(...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after
161 using base::SharedMemory; 161 using base::SharedMemory;
162 DCHECK(SharedMemory::IsHandleValid(font_data)); 162 DCHECK(SharedMemory::IsHandleValid(font_data));
163 DCHECK_GT(font_data_size, 0U); 163 DCHECK_GT(font_data_size, 0U);
164 164
165 SharedMemory shm(font_data, /*read_only=*/true); 165 SharedMemory shm(font_data, /*read_only=*/true);
166 if (!shm.Map(font_data_size)) 166 if (!shm.Map(font_data_size))
167 return false; 167 return false;
168 168
169 NSData* data = [NSData dataWithBytes:shm.memory() 169 NSData* data = [NSData dataWithBytes:shm.memory()
170 length:font_data_size]; 170 length:font_data_size];
171 base::mac::ScopedCFTypeRef<CGDataProviderRef> provider( 171 base::ScopedCFTypeRef<CGDataProviderRef> provider(
172 CGDataProviderCreateWithCFData(base::mac::NSToCFCast(data))); 172 CGDataProviderCreateWithCFData(base::mac::NSToCFCast(data)));
173 if (!provider) 173 if (!provider)
174 return false; 174 return false;
175 175
176 *out = CGFontCreateWithDataProvider(provider.get()); 176 *out = CGFontCreateWithDataProvider(provider.get());
177 177
178 if (*out == NULL) 178 if (*out == NULL)
179 return false; 179 return false;
180 180
181 return true; 181 return true;
182 } 182 }
OLDNEW
« no previous file with comments | « content/common/gpu/image_transport_surface_mac.cc ('k') | content/common/sandbox_mac.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698