Changeset 129040 in webkit


Ignore:
Timestamp:
Sep 19, 2012 1:43:54 PM (12 years ago)
Author:
mifenton@rim.com
Message:

[BlackBerry] Add SpellingLog for spell checking options request.
https://bugs.webkit.org/show_bug.cgi?id=97125

Reviewed by Rob Buis.

Add spell checking log to indicate the calculated
text position for spell checking option requests.

Reviewed Internally by Nima Ghanavatian.

  • WebKitSupport/InputHandler.cpp:

(BlackBerry::WebKit::InputHandler::shouldRequestSpellCheckingOptionsForPoint):

Location:
trunk/Source/WebKit/blackberry
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/blackberry/ChangeLog

    r129010 r129040  
     12012-09-19  Mike Fenton  <mifenton@rim.com>
     2
     3        [BlackBerry] Add SpellingLog for spell checking options request.
     4        https://bugs.webkit.org/show_bug.cgi?id=97125
     5
     6        Reviewed by Rob Buis.
     7
     8        Add spell checking log to indicate the calculated
     9        text position for spell checking option requests.
     10
     11        Reviewed Internally by Nima Ghanavatian.
     12
     13        * WebKitSupport/InputHandler.cpp:
     14        (BlackBerry::WebKit::InputHandler::shouldRequestSpellCheckingOptionsForPoint):
     15
    1162012-09-19  Jonathan Dong  <jonathan.dong@torchmobile.com.cn>
    217
  • trunk/Source/WebKit/blackberry/WebKitSupport/InputHandler.cpp

    r128933 r129040  
    697697    spellCheckingOptionRequest.endTextPosition = marker->endOffset();
    698698
     699    SpellingLog(LogLevelInfo, "InputHandler::shouldRequestSpellCheckingOptionsForPoint spellCheckingOptionRequest\ntop %d, %d\nbottom %d %d\nMarker start %d end %d"
     700                , spellCheckingOptionRequest.caret_rect.caret_top_x, spellCheckingOptionRequest.caret_rect.caret_top_y
     701                , spellCheckingOptionRequest.caret_rect.caret_bottom_x, spellCheckingOptionRequest.caret_rect.caret_bottom_y
     702                , spellCheckingOptionRequest.startTextPosition, spellCheckingOptionRequest.endTextPosition);
     703
    699704    return true;
    700705}
Note: See TracChangeset for help on using the changeset viewer.