Title: [144892] trunk/Source/WebKit2
Revision
144892
Author
g.czajkow...@samsung.com
Date
2013-03-06 00:04:39 -0800 (Wed, 06 Mar 2013)

Log 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):

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (144891 => 144892)


--- trunk/Source/WebKit2/ChangeLog	2013-03-06 07:59:18 UTC (rev 144891)
+++ trunk/Source/WebKit2/ChangeLog	2013-03-06 08:04:39 UTC (rev 144892)
@@ -1,3 +1,19 @@
+2013-03-05  Grzegorz Czajkowski  <g.czajkow...@samsung.com>
+
+        [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):
+
 2013-03-05  Kondapally Kalyan  <kalyan.kondapa...@intel.com>
 
         [EFL] Ensure right format is used in SnapshotImageGL.

Modified: trunk/Source/WebKit2/UIProcess/API/efl/EwkView.cpp (144891 => 144892)


--- trunk/Source/WebKit2/UIProcess/API/efl/EwkView.cpp	2013-03-06 07:59:18 UTC (rev 144891)
+++ trunk/Source/WebKit2/UIProcess/API/efl/EwkView.cpp	2013-03-06 08:04:39 UTC (rev 144892)
@@ -280,6 +280,9 @@
     WKPreferencesSetFullScreenEnabled(wkPreferences, true);
     WKPreferencesSetWebAudioEnabled(wkPreferences, true);
     WKPreferencesSetOfflineWebApplicationCacheEnabled(wkPreferences, true);
+#if ENABLE(SPELLCHECK)
+    WKPreferencesSetAsynchronousSpellCheckingEnabled(wkPreferences, true);
+#endif
 
     // Enable mouse events by default
     setMouseEventsEnabled(true);
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to