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

Side by Side Diff: Source/platform/fonts/mac/SimpleFontDataMac.mm

Issue 329253005: Qualify the generated includes in platform. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fix Mac build Created 6 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) 2005, 2006, 2010, 2011 Apple Inc. All rights reserved. 2 * Copyright (C) 2005, 2006, 2010, 2011 Apple Inc. All rights reserved.
3 * Copyright (C) 2006 Alexey Proskuryakov 3 * Copyright (C) 2006 Alexey Proskuryakov
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 13 matching lines...) Expand all
24 * THE POSSIBILITY OF SUCH DAMAGE. 24 * THE POSSIBILITY OF SUCH DAMAGE.
25 */ 25 */
26 26
27 #import "config.h" 27 #import "config.h"
28 #import "platform/fonts/SimpleFontData.h" 28 #import "platform/fonts/SimpleFontData.h"
29 29
30 #import <AppKit/AppKit.h> 30 #import <AppKit/AppKit.h>
31 #import <ApplicationServices/ApplicationServices.h> 31 #import <ApplicationServices/ApplicationServices.h>
32 #import <float.h> 32 #import <float.h>
33 #import <unicode/uchar.h> 33 #import <unicode/uchar.h>
34 #import "RuntimeEnabledFeatures.h"
35 #import "platform/LayoutTestSupport.h" 34 #import "platform/LayoutTestSupport.h"
35 #import "platform/RuntimeEnabledFeatures.h"
36 #import "platform/SharedBuffer.h" 36 #import "platform/SharedBuffer.h"
37 #import "platform/fonts/Font.h" 37 #import "platform/fonts/Font.h"
38 #import "platform/fonts/FontCache.h" 38 #import "platform/fonts/FontCache.h"
39 #import "platform/fonts/FontDescription.h" 39 #import "platform/fonts/FontDescription.h"
40 #import "platform/geometry/FloatRect.h" 40 #import "platform/geometry/FloatRect.h"
41 #import "platform/graphics/Color.h" 41 #import "platform/graphics/Color.h"
42 #import "platform/mac/BlockExceptions.h" 42 #import "platform/mac/BlockExceptions.h"
43 #import <wtf/Assertions.h> 43 #import <wtf/Assertions.h>
44 #import <wtf/RetainPtr.h> 44 #import <wtf/RetainPtr.h>
45 #import <wtf/StdLibExtras.h> 45 #import <wtf/StdLibExtras.h>
(...skipping 401 matching lines...) Expand 10 before | Expand all | Expand 10 after
447 RetainPtr<CGFontRef> runCGFont(AdoptCF, CTFontCopyGraphicsFont(runFont, 0)); 447 RetainPtr<CGFontRef> runCGFont(AdoptCF, CTFontCopyGraphicsFont(runFont, 0));
448 if (!CFEqual(runCGFont.get(), cgFont.get())) 448 if (!CFEqual(runCGFont.get(), cgFont.get()))
449 return false; 449 return false;
450 } 450 }
451 451
452 addResult.storedValue->value = true; 452 addResult.storedValue->value = true;
453 return true; 453 return true;
454 } 454 }
455 455
456 } // namespace WebCore 456 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/platform/fonts/mac/FontCacheMac.mm ('k') | Source/platform/fonts/opentype/OpenTypeSanitizer.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698