Changeset 90129 in webkit
- Timestamp:
- Jun 30, 2011, 9:53:52 AM (14 years ago)
- Location:
- trunk/Source
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/Source/WebCore/ChangeLog ¶
r90127 r90129 1 2011-06-30 Dan Bernstein <mitz@apple.com> 2 3 Reviewed by Adele Peterson. 4 5 Add +[WebView _allowsRoundingHacks] 6 https://bugs.webkit.org/show_bug.cgi?id=63734 7 8 * WebCore.exp.in: Export TextRun::allowsRoundingHacks(). 9 * platform/graphics/TextRun.cpp: 10 (WebCore::TextRun::allowsRoundingHacks): Added this accessor. 11 * platform/graphics/TextRun.h: 12 1 13 2011-06-30 Patrick Gansterer <paroga@webkit.org> 2 14 -
TabularUnified trunk/Source/WebCore/WebCore.exp.in ¶
r90087 r90129 827 827 __ZN7WebCore7IntRectC1ERKNS_9FloatRectE 828 828 __ZN7WebCore7IntSizeC1ERK7_NSSize 829 __ZN7WebCore7TextRun19allowsRoundingHacksEv 829 830 __ZN7WebCore7TextRun21s_allowsRoundingHacksE 830 831 __ZN7WebCore7TextRun22setAllowsRoundingHacksEb -
TabularUnified trunk/Source/WebCore/platform/graphics/TextRun.cpp ¶
r89733 r90129 36 36 } 37 37 38 bool TextRun::allowsRoundingHacks() 39 { 40 return s_allowsRoundingHacks; 38 41 } 42 43 } -
TabularUnified trunk/Source/WebCore/platform/graphics/TextRun.h ¶
r89733 r90129 147 147 148 148 static void setAllowsRoundingHacks(bool); 149 static bool allowsRoundingHacks(); 149 150 150 151 private: -
TabularUnified trunk/Source/WebKit/mac/ChangeLog ¶
r90087 r90129 1 2011-06-30 Dan Bernstein <mitz@apple.com> 2 3 Reviewed by Adele Peterson. 4 5 Add +[WebView _allowsRoundingHacks] 6 https://bugs.webkit.org/show_bug.cgi?id=63734 7 8 * WebView/WebView.mm: 9 (+[WebView _allowsRoundingHacks]): Added this accessor. 10 * WebView/WebViewPrivate.h: 11 1 12 2011-06-29 Darin Adler <darin@apple.com> 2 13 -
TabularUnified trunk/Source/WebKit/mac/WebView/WebView.mm ¶
r89733 r90129 1072 1072 } 1073 1073 1074 + (BOOL)_allowsRoundingHacks 1075 { 1076 return TextRun::allowsRoundingHacks(); 1077 } 1078 1074 1079 + (BOOL)canCloseAllWebViews 1075 1080 { -
TabularUnified trunk/Source/WebKit/mac/WebView/WebViewPrivate.h ¶
r89733 r90129 343 343 344 344 + (void)_setAllowsRoundingHacks:(BOOL)allowsRoundingHacks; 345 + (BOOL)_allowsRoundingHacks; 345 346 346 347 - (NSCachedURLResponse *)_cachedResponseForURL:(NSURL *)URL;
Note:
See TracChangeset
for help on using the changeset viewer.