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

Side by Side Diff: Source/platform/mac/WebFontCache.h

Issue 67433002: Move Mac related files to Source/platform (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Also export BlockExceptions Created 7 years, 1 month 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
« no previous file with comments | « Source/platform/mac/BlockExceptions.mm ('k') | Source/platform/mac/WebFontCache.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 /* 1 /*
2 * Copyright (C) 2006, 2008 Apple Inc. All rights reserved. 2 * Copyright (C) 2006, 2008 Apple Inc. All rights reserved.
3 * Copyright (C) 2007 Nicholas Shanks <webkit@nickshanks.com> 3 * Copyright (C) 2007 Nicholas Shanks <webkit@nickshanks.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 17 matching lines...) Expand all
28 #import <wtf/Vector.h> 28 #import <wtf/Vector.h>
29 29
30 // This interface exists so that third party products (like Silk) can patch in t o an Obj-C method to manipulate WebKit's font caching/substitution. 30 // This interface exists so that third party products (like Silk) can patch in t o an Obj-C method to manipulate WebKit's font caching/substitution.
31 @interface WebFontCache : NSObject 31 @interface WebFontCache : NSObject
32 + (NSFont *)fontWithFamily:(NSString *)desiredFamily traits:(NSFontTraitMask)des iredTraits weight:(int)desiredWeight size:(float)size; 32 + (NSFont *)fontWithFamily:(NSString *)desiredFamily traits:(NSFontTraitMask)des iredTraits weight:(int)desiredWeight size:(float)size;
33 + (void)getTraits:(Vector<unsigned>&)traitsMasks inFamily:(NSString *)desiredFam ily; 33 + (void)getTraits:(Vector<unsigned>&)traitsMasks inFamily:(NSString *)desiredFam ily;
34 34
35 // This older version of the interface is relied upon by some clients. WebCore d oesn't use it. 35 // This older version of the interface is relied upon by some clients. WebCore d oesn't use it.
36 + (NSFont *)fontWithFamily:(NSString *)desiredFamily traits:(NSFontTraitMask)des iredTraits size:(float)size; 36 + (NSFont *)fontWithFamily:(NSString *)desiredFamily traits:(NSFontTraitMask)des iredTraits size:(float)size;
37 @end 37 @end
OLDNEW
« no previous file with comments | « Source/platform/mac/BlockExceptions.mm ('k') | Source/platform/mac/WebFontCache.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698