Title: [106125] trunk/Source/WebKit2
Revision
106125
Author
[email protected]
Date
2012-01-27 09:51:23 -0800 (Fri, 27 Jan 2012)

Log Message

Fix overridePreference for WebKitHixie76WebSocketProtocolEnabled in WebKitTestRunner.
https://bugs.webkit.org/show_bug.cgi?id=77220

Reviewed by Noam Rosenthal.

* WebProcess/InjectedBundle/InjectedBundle.cpp:
(WebKit::InjectedBundle::overrideBoolPreferenceForTestRunner): The macro already stringify TestRunnerName.

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (106124 => 106125)


--- trunk/Source/WebKit2/ChangeLog	2012-01-27 17:39:15 UTC (rev 106124)
+++ trunk/Source/WebKit2/ChangeLog	2012-01-27 17:51:23 UTC (rev 106125)
@@ -1,3 +1,13 @@
+2012-01-27  Jocelyn Turcotte  <[email protected]>
+
+        Fix overridePreference for WebKitHixie76WebSocketProtocolEnabled in WebKitTestRunner.
+        https://bugs.webkit.org/show_bug.cgi?id=77220
+
+        Reviewed by Noam Rosenthal.
+
+        * WebProcess/InjectedBundle/InjectedBundle.cpp:
+        (WebKit::InjectedBundle::overrideBoolPreferenceForTestRunner): The macro already stringify TestRunnerName.
+
 2012-01-27  Carlos Garcia Campos  <[email protected]>
 
         [GTK] Add a GKeyFile especialization to GOwnPtr

Modified: trunk/Source/WebKit2/WebProcess/InjectedBundle/InjectedBundle.cpp (106124 => 106125)


--- trunk/Source/WebKit2/WebProcess/InjectedBundle/InjectedBundle.cpp	2012-01-27 17:39:15 UTC (rev 106124)
+++ trunk/Source/WebKit2/WebProcess/InjectedBundle/InjectedBundle.cpp	2012-01-27 17:51:23 UTC (rev 106125)
@@ -153,7 +153,7 @@
     FOR_EACH_OVERRIDE_BOOL_PREFERENCE(OVERRIDE_PREFERENCE_AND_SET_IN_EXISTING_PAGES)
 
 #if ENABLE(WEB_SOCKETS)
-    OVERRIDE_PREFERENCE_AND_SET_IN_EXISTING_PAGES("WebKitHixie76WebSocketProtocolEnabled", UseHixie76WebSocketProtocol, hixie76WebSocketProtocolEnabled)
+    OVERRIDE_PREFERENCE_AND_SET_IN_EXISTING_PAGES(WebKitHixie76WebSocketProtocolEnabled, UseHixie76WebSocketProtocol, hixie76WebSocketProtocolEnabled)
 #endif
 
 #undef OVERRIDE_PREFERENCE_AND_SET_IN_EXISTING_PAGES
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to