| Summary: | Use modern loops in WebProcess | ||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| Product: | WebKit | Reporter: | Hunseop Jeong <hs85.jeong> | ||||||||
| Component: | WebKit2 | Assignee: | Hunseop Jeong <hs85.jeong> | ||||||||
| Status: | RESOLVED FIXED | ||||||||||
| Severity: | Normal | CC: | commit-queue, darin, rniwa | ||||||||
| Priority: | P2 | ||||||||||
| Version: | 528+ (Nightly build) | ||||||||||
| Hardware: | Unspecified | ||||||||||
| OS: | Unspecified | ||||||||||
| Attachments: |
|
||||||||||
|
Description
Hunseop Jeong
2015-04-01 04:47:02 PDT
Created attachment 249913 [details]
Patch
Created attachment 249917 [details]
Patch
Comment on attachment 249917 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=249917&action=review > Source/WebKit2/WebProcess/WebProcess.cpp:542 > + if (page.get()->windowAndWebPageAreFocused()) This should just be page-> rather than page.get()-> > Source/WebKit2/WebProcess/WebProcess.cpp:1146 > - page->unmarkAllMisspellings(); > + page.get()->unmarkAllMisspellings(); This change should not be needed. > Source/WebKit2/WebProcess/WebProcess.cpp:1148 > - page->unmarkAllBadGrammar(); > + page.get()->unmarkAllBadGrammar(); This change should not be needed. > Source/WebKit2/WebProcess/WebProcess.cpp:1219 > + if (Frame* mainFrame = page.get()->mainFrame()) This should be page-> rather than page.get()-> Created attachment 250253 [details]
Thanks for review, I changed the code to follow your comments.
Comment on attachment 250253 [details] Thanks for review, I changed the code to follow your comments. View in context: https://bugs.webkit.org/attachment.cgi?id=250253&action=review > Source/WebKit2/WebProcess/WebProcess.cpp:312 > + for (auto& scheme : parameters.urlSchemesRegistererdAsEmptyDocument) After we land this patch we should fix the "Registererd" typo (not just here, but everywhere). Comment on attachment 250253 [details] Thanks for review, I changed the code to follow your comments. Clearing flags on attachment: 250253 Committed r182622: <http://trac.webkit.org/changeset/182622> All reviewed patches have been landed. Closing bug. (In reply to comment #5) > Comment on attachment 250253 [details] > Thanks for review, I changed the code to follow your comments. > > View in context: > https://bugs.webkit.org/attachment.cgi?id=250253&action=review > > > Source/WebKit2/WebProcess/WebProcess.cpp:312 > > + for (auto& scheme : parameters.urlSchemesRegistererdAsEmptyDocument) > > After we land this patch we should fix the "Registererd" typo (not just > here, but everywhere). I fixed the typos( urlSchemesRegistererdAsEmptyDocument -> urlSchemesRegisteredAsEmptyDocument) https://bugs.webkit.org/show_bug.cgi?id=143598 |