WebKit Bugzilla
New
Browse
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
RESOLVED FIXED
115755
Devirtualize Document class type checking
https://bugs.webkit.org/show_bug.cgi?id=115755
Summary
Devirtualize Document class type checking
Ryosuke Niwa
Reported
2013-05-07 13:50:48 PDT
Merge
https://chromium.googlesource.com/chromium/blink/+/dae5adc768d5ce6bff301df6515745da8ea24950
Devirtualize Document class type checking Document has a bunch of virtual bool is*Document() methods on it, but it also has two bools for XHTML and HTML documents which is silly. We can merge them all together into an enum of values and devirtualize the type checking methods. This patch introduces the DocumentClass enum that is used to signal what subclass of Document, or HTMLDocument, is being implemented.
Attachments
Cleanup
(12.00 KB, patch)
2013-05-07 16:26 PDT
,
Ryosuke Niwa
benjamin
: review+
Details
Formatted Diff
Diff
View All
Add attachment
proposed patch, testcase, etc.
Ryosuke Niwa
Comment 1
2013-05-07 16:26:00 PDT
Created
attachment 200991
[details]
Cleanup
Benjamin Poulain
Comment 2
2013-05-07 16:37:54 PDT
Comment on
attachment 200991
[details]
Cleanup View in context:
https://bugs.webkit.org/attachment.cgi?id=200991&action=review
> Source/WebCore/dom/Document.h:1486 > + unsigned m_documentClasses;
I would just use a uchar8_t here. That way it fits on a word with the 3 boolean bellow.
> Source/WebCore/html/HTMLDocument.h:78 > + HTMLDocument(Frame*, const KURL&, unsigned documentClasses = HTMLDocumentClass);
I think it should have a default of 0. Otherwise, an caller may think passing something else override the HTMLDocumentClass. Which is not true because the constructor does the right thing.
Ryosuke Niwa
Comment 3
2013-05-07 18:59:29 PDT
Committed
r149705
: <
http://trac.webkit.org/changeset/149705
>
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