Changeset 144892 in webkit


Ignore:
Timestamp:
Mar 6, 2013, 12:04:39 AM (12 years ago)
Author:
g.czajkowski@samsung.com
Message:

[WK2][EFL] Enable asynchronous spell checking by default
https://bugs.webkit.org/show_bug.cgi?id=111295

Reviewed by Benjamin Poulain.

Asynchronous spell checking feature is disabled by default for wk2 platforms.
It means all requests of spell checking are sent synchronously.

WebKit-EFL implements requestCheckingOfString method which allows
to check spelling asynchronously.

  • UIProcess/API/efl/EwkView.cpp:

(EwkView::EwkView):

Location:
trunk/Source/WebKit2
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit2/ChangeLog

    r144887 r144892  
     12013-03-05  Grzegorz Czajkowski  <g.czajkowski@samsung.com>
     2
     3        [WK2][EFL] Enable asynchronous spell checking by default
     4        https://bugs.webkit.org/show_bug.cgi?id=111295
     5
     6        Reviewed by Benjamin Poulain.
     7
     8        Asynchronous spell checking feature is disabled by default for wk2 platforms.
     9        It means all requests of spell checking are sent synchronously.
     10
     11        WebKit-EFL implements requestCheckingOfString method which allows
     12        to check spelling asynchronously.
     13
     14        * UIProcess/API/efl/EwkView.cpp:
     15        (EwkView::EwkView):
     16
    1172013-03-05  Kondapally Kalyan  <kalyan.kondapally@intel.com>
    218
  • trunk/Source/WebKit2/UIProcess/API/efl/EwkView.cpp

    r144585 r144892  
    281281    WKPreferencesSetWebAudioEnabled(wkPreferences, true);
    282282    WKPreferencesSetOfflineWebApplicationCacheEnabled(wkPreferences, true);
     283#if ENABLE(SPELLCHECK)
     284    WKPreferencesSetAsynchronousSpellCheckingEnabled(wkPreferences, true);
     285#endif
    283286
    284287    // Enable mouse events by default
Note: See TracChangeset for help on using the changeset viewer.