Editor class has two difference code paths for spell-checking: (1) checkTextOfParagraph() for Snow Leopard or later (2) checkSpellingOfString() and checkGrammarOfString() for other platforms. These paths should be unified so that improving spell-checking code is easy. After 69241 is resolved, static #if-statement USE(UNIFIED_TEXT_CHECKING) in WebCore should be converted to dynamic if-statement so that using checkTextOfParagraph() becomes easy in non-SL or non-Lion platform.
Created attachment 110490 [details] Test Patch
Attachment 110490 [details] did not pass style-queue: Failed to run "['Tools/Scripts/check-webkit-style', '--diff-files', u'Source/WebCore/CMakeLists.txt', u'Source/W..." exit_code: 1 Source/WebCore/editing/TextCheckingHelper.h:99: The parameter name "frame" adds no information, so it should be removed. [readability/parameter_name] [5] Total errors found: 1 in 12 files If any of these errors are false positives, please file a bug against check-webkit-style.
Created attachment 110661 [details] Patch
Comment on attachment 110661 [details] Patch Hi, Thanks for doing this! WebKit generally prefers early-return style instead of if-else. In this case, it also helps to keep diff small.
Created attachment 111242 [details] Patch
(In reply to comment #4) > (From update of attachment 110661 [details]) > Hi, Thanks for doing this! > WebKit generally prefers early-return style instead of if-else. > In this case, it also helps to keep diff small. Hi, I tried to keep early-return style as much as possible. If not enough, please tell me...
Comment on attachment 111242 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=111242&action=review Generally looks fine. Could you take these small cleanup? > Source/WebCore/editing/Editor.cpp:1682 > + if (unifiedTextCheckerEnabled(m_frame)) { Could you wrap this conditional as a Editor method? > Source/WebCore/editing/Editor.cpp:2040 > + } Why not simply ASSERT(unifiedTextCheckerEnabled(m_frame)) ? > Source/WebCore/editing/Editor.cpp:2239 > + } Ditto. > Source/WebCore/editing/TextCheckingHelper.cpp:230 > + if (!m_range || !unifiedTextCheckerEnabled(m_range->ownerDocument()->frame())) Could you extract this criteria as a method of TextCheckingHelper? > Source/WebCore/editing/TextCheckingHelper.cpp:509 > + if (!m_range || !unifiedTextCheckerEnabled(m_range->ownerDocument()->frame())) Ditto. > Source/WebCore/editing/TextCheckingHelper.h:30 > +class Settings; It looks we don't need this.
Created attachment 111251 [details] Patch
Attachment 111251 [details] did not pass style-queue: Failed to run "['Tools/Scripts/update-webkit', '--chromium']" exit_code: 2 Updating OpenSource Current branch master is up to date. Updating chromium port dependencies using gclient... Error: Can't switch the checkout to http://v8.googlecode.com/svn/branches/3.6@9637; UUID don't match and there is local changes in /mnt/git/webkit-style-queue/Source/WebKit/chromium/v8. Delete the directory and try again. Re-trying 'depot_tools/gclient sync' Error: Can't switch the checkout to http://v8.googlecode.com/svn/branches/3.6@9637; UUID don't match and there is local changes in /mnt/git/webkit-style-queue/Source/WebKit/chromium/v8. Delete the directory and try again. Re-trying 'depot_tools/gclient sync' Error: Can't switch the checkout to http://v8.googlecode.com/svn/branches/3.6@9637; UUID don't match and there is local changes in /mnt/git/webkit-style-queue/Source/WebKit/chromium/v8. Delete the directory and try again. Error: 'depot_tools/gclient sync' failed 3 tries and returned 256 at Tools/Scripts/update-webkit-chromium line 107. Re-trying 'depot_tools/gclient sync' No such file or directory at Tools/Scripts/update-webkit line 104. If any of these errors are false positives, please file a bug against check-webkit-style.
Comment on attachment 111251 [details] Patch r+ed. And cq+ing.
Comment on attachment 111251 [details] Patch Clearing flags on attachment: 111251 Committed r97696: <http://trac.webkit.org/changeset/97696>
All reviewed patches have been landed. Closing bug.