WebKit Bugzilla
New
Browse
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
RESOLVED FIXED
123706
Remove code duplications in createFontCustomPlatformData()
https://bugs.webkit.org/show_bug.cgi?id=123706
Summary
Remove code duplications in createFontCustomPlatformData()
Patrick R. Gansterer
Reported
2013-11-03 10:10:12 PST
Remove code duplications in createFontCustomPlatformData()
Attachments
Patch
(17.98 KB, patch)
2013-11-04 16:36 PST
,
Patrick R. Gansterer
no flags
Details
Formatted Diff
Diff
View All
Add attachment
proposed patch, testcase, etc.
Patrick R. Gansterer
Comment 1
2013-11-04 16:36:27 PST
Created
attachment 215968
[details]
Patch
Darin Adler
Comment 2
2013-11-04 17:24:51 PST
Comment on
attachment 215968
[details]
Patch View in context:
https://bugs.webkit.org/attachment.cgi?id=215968&action=review
> Source/WebCore/loader/cache/CachedFont.cpp:103 > + OpenTypeSanitizer sanitizer(buffer); > + RefPtr<SharedBuffer> transcodeBuffer = sanitizer.sanitize();
I would like this better as a single line: RefPtr<SharedBuffer> sanitizedBuffer = OpenTypeSanitizer(buffer).sanitize();
> Source/WebCore/loader/cache/CachedFont.cpp:117 > + m_fontData = buffer ? createFontCustomPlatformData(*buffer) : nullptr;
We could use an if statement instead of a ? : since we already know that m_fontData is null here.
WebKit Commit Bot
Comment 3
2013-11-04 17:29:48 PST
Comment on
attachment 215968
[details]
Patch Clearing flags on attachment: 215968 Committed
r158623
: <
http://trac.webkit.org/changeset/158623
>
WebKit Commit Bot
Comment 4
2013-11-04 17:29:50 PST
All reviewed patches have been landed. Closing bug.
Note
You need to
log in
before you can comment on or make changes to this bug.
Top of Page
Format For Printing
XML
Clone This Bug