WebKit Bugzilla
New
Browse
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
RESOLVED FIXED
112225
Replace static_casts with to* functions for document types
https://bugs.webkit.org/show_bug.cgi?id=112225
Summary
Replace static_casts with to* functions for document types
Abhishek Arya
Reported
2013-03-12 20:26:53 PDT
Replace static_casts with to* functions for document types
Attachments
Patch
(92.10 KB, patch)
2013-03-12 21:12 PDT
,
Abhishek Arya
no flags
Details
Formatted Diff
Diff
Patch
(92.35 KB, patch)
2013-03-12 21:29 PDT
,
Abhishek Arya
no flags
Details
Formatted Diff
Diff
Patch
(92.36 KB, patch)
2013-03-12 21:56 PDT
,
Abhishek Arya
no flags
Details
Formatted Diff
Diff
Patch
(91.76 KB, patch)
2013-03-13 00:15 PDT
,
Abhishek Arya
no flags
Details
Formatted Diff
Diff
Patch
(92.30 KB, patch)
2013-03-13 12:52 PDT
,
Abhishek Arya
no flags
Details
Formatted Diff
Diff
Show Obsolete
(4)
View All
Add attachment
proposed patch, testcase, etc.
Abhishek Arya
Comment 1
2013-03-12 21:12:42 PDT
Created
attachment 192866
[details]
Patch
Abhishek Arya
Comment 2
2013-03-12 21:29:26 PDT
Created
attachment 192867
[details]
Patch
Early Warning System Bot
Comment 3
2013-03-12 21:38:12 PDT
Comment on
attachment 192867
[details]
Patch
Attachment 192867
[details]
did not pass qt-ews (qt): Output:
http://webkit-commit-queue.appspot.com/results/17160215
Early Warning System Bot
Comment 4
2013-03-12 21:38:51 PDT
Comment on
attachment 192867
[details]
Patch
Attachment 192867
[details]
did not pass qt-wk2-ews (qt): Output:
http://webkit-commit-queue.appspot.com/results/17010936
EFL EWS Bot
Comment 5
2013-03-12 21:55:17 PDT
Comment on
attachment 192867
[details]
Patch
Attachment 192867
[details]
did not pass efl-ews (efl): Output:
http://webkit-commit-queue.appspot.com/results/17080442
Abhishek Arya
Comment 6
2013-03-12 21:56:22 PDT
Created
attachment 192868
[details]
Patch
Early Warning System Bot
Comment 7
2013-03-12 22:07:01 PDT
Comment on
attachment 192868
[details]
Patch
Attachment 192868
[details]
did not pass qt-ews (qt): Output:
http://webkit-commit-queue.appspot.com/results/17060722
Early Warning System Bot
Comment 8
2013-03-12 22:09:29 PDT
Comment on
attachment 192868
[details]
Patch
Attachment 192868
[details]
did not pass qt-wk2-ews (qt): Output:
http://webkit-commit-queue.appspot.com/results/17060725
Build Bot
Comment 9
2013-03-12 23:49:23 PDT
Comment on
attachment 192868
[details]
Patch
Attachment 192868
[details]
did not pass mac-ews (mac): Output:
http://webkit-commit-queue.appspot.com/results/17208050
New failing tests: userscripts/user-script-plugin-document.html http/tests/security/contentSecurityPolicy/object-src-url-allowed.html plugins/return-error-from-new-stream-callback-in-full-frame-plugin.html plugins/plugin-document-back-forward.html fast/frames/iframe-plugin-load-remove-document-crash.html plugins/iframe-plugin-bgcolor.html http/tests/security/contentSecurityPolicy/object-src-url-blocked.html fast/loader/reload-zero-byte-plugin.html
Abhishek Arya
Comment 10
2013-03-13 00:15:59 PDT
Created
attachment 192875
[details]
Patch
Ryosuke Niwa
Comment 11
2013-03-13 10:17:53 PDT
Comment on
attachment 192875
[details]
Patch View in context:
https://bugs.webkit.org/attachment.cgi?id=192875&action=review
Please be sure to run tests by a debug build yourself before landing it.
> Source/WebCore/html/ImageDocument.h:88 > +// This will catch anyone doing an unnecessary cast. > +void toImageDocument(const ImageDocument*);
I'm not sure if this is really useful.
> Source/WebCore/html/MediaDocument.h:71 > +// This will catch anyone doing an unnecessary cast. > +void toMediaDocument(const MediaDocument*);
Ditto.
Abhishek Arya
Comment 12
2013-03-13 10:45:48 PDT
(In reply to
comment #11
)
> (From update of
attachment 192875
[details]
) > View in context:
https://bugs.webkit.org/attachment.cgi?id=192875&action=review
> > Please be sure to run tests by a debug build yourself before landing it.
Sure.
> > > Source/WebCore/html/ImageDocument.h:88 > > +// This will catch anyone doing an unnecessary cast. > > +void toImageDocument(const ImageDocument*); > > I'm not sure if this is really useful. >
actually it helped twice yesterday since compile will fail if something is already the same type and we try to call static_cast on it.
> > Source/WebCore/html/MediaDocument.h:71 > > +// This will catch anyone doing an unnecessary cast. > > +void toMediaDocument(const MediaDocument*); > > Ditto.
Philip Rogers
Comment 13
2013-03-13 10:52:19 PDT
Comment on
attachment 192875
[details]
Patch View in context:
https://bugs.webkit.org/attachment.cgi?id=192875&action=review
> Source/WebCore/Modules/notifications/Notification.cpp:261 > ASSERT_WITH_SECURITY_IMPLICATION(context->isDocument());
This is no longer necessary (here, and elsewhere). Do you mind removing these extra assertions?
Abhishek Arya
Comment 14
2013-03-13 10:53:30 PDT
(In reply to
comment #13
)
> (From update of
attachment 192875
[details]
) > View in context:
https://bugs.webkit.org/attachment.cgi?id=192875&action=review
> > > Source/WebCore/Modules/notifications/Notification.cpp:261 > > ASSERT_WITH_SECURITY_IMPLICATION(context->isDocument()); > > This is no longer necessary (here, and elsewhere). Do you mind removing these extra assertions?
Yes, forgot some of those, will remove before landing.
Abhishek Arya
Comment 15
2013-03-13 12:52:41 PDT
Created
attachment 192968
[details]
Patch
WebKit Review Bot
Comment 16
2013-03-13 13:31:22 PDT
Comment on
attachment 192968
[details]
Patch Clearing flags on attachment: 192968 Committed
r145745
: <
http://trac.webkit.org/changeset/145745
>
WebKit Review Bot
Comment 17
2013-03-13 13:31:26 PDT
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