Title: [141092] trunk/Source/WebKit2
Revision
141092
Author
[email protected]
Date
2013-01-29 03:32:12 -0800 (Tue, 29 Jan 2013)

Log Message

[Qt] Remove misspelled ENABLE(SPEECH_INPUT) guard
https://bugs.webkit.org/show_bug.cgi?id=105683

Patch by Laszlo Gombos <[email protected]> on 2013-01-29
Reviewed by Simon Hausmann.

The ENABLE(SPEECH_INPUT) guard is only used in one location
in the source tree and as such it is always 0.

I believe that this guard is a left over and is not needed any more
as the code guarded is not guarded anywhere else.

* WebProcess/qt/WebProcessQt.cpp:
(WebKit::WebProcess::platformInitializeWebProcess):

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (141091 => 141092)


--- trunk/Source/WebKit2/ChangeLog	2013-01-29 11:08:14 UTC (rev 141091)
+++ trunk/Source/WebKit2/ChangeLog	2013-01-29 11:32:12 UTC (rev 141092)
@@ -1,3 +1,19 @@
+2013-01-29  Laszlo Gombos  <[email protected]>
+
+        [Qt] Remove misspelled ENABLE(SPEECH_INPUT) guard
+        https://bugs.webkit.org/show_bug.cgi?id=105683
+
+        Reviewed by Simon Hausmann.
+
+        The ENABLE(SPEECH_INPUT) guard is only used in one location
+        in the source tree and as such it is always 0.
+
+        I believe that this guard is a left over and is not needed any more
+        as the code guarded is not guarded anywhere else.
+
+        * WebProcess/qt/WebProcessQt.cpp:
+        (WebKit::WebProcess::platformInitializeWebProcess):
+
 2013-01-29  Zan Dobersek  <[email protected]>
 
         Unreviewed build fix after r141024.

Modified: trunk/Source/WebKit2/WebProcess/qt/WebProcessQt.cpp (141091 => 141092)


--- trunk/Source/WebKit2/WebProcess/qt/WebProcessQt.cpp	2013-01-29 11:08:14 UTC (rev 141091)
+++ trunk/Source/WebKit2/WebProcess/qt/WebProcessQt.cpp	2013-01-29 11:32:12 UTC (rev 141092)
@@ -160,9 +160,7 @@
     }
 #endif
 
-#if ENABLE(SPEECH_INPUT)
     WebCore::RuntimeEnabledFeatures::setSpeechInputEnabled(false);
-#endif
 
     // We'll only install the Qt builtin bundle if we don't have one given by the UI process.
     // Currently only WTR provides its own bundle.
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to