Title: [111575] trunk/Source/WebCore
Revision
111575
Author
[email protected]
Date
2012-03-21 10:51:10 -0700 (Wed, 21 Mar 2012)

Log Message

Use RFC version of WebSocket protocol by default
https://bugs.webkit.org/show_bug.cgi?id=81718

Reviewed by Kent Tamura.

Flip the default value of Settings::m_useHixie76WebSocketProtocol so WebKit ports will use
RFC version of WebSocket protocol by default.

All the existing ports already use the RFC protocol as of now, so this change will not make
any impact (hopefully).

No new tests. No change in functionality.

* page/Settings.cpp:
(WebCore::Settings::Settings):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (111574 => 111575)


--- trunk/Source/WebCore/ChangeLog	2012-03-21 17:49:51 UTC (rev 111574)
+++ trunk/Source/WebCore/ChangeLog	2012-03-21 17:51:10 UTC (rev 111575)
@@ -1,3 +1,21 @@
+2012-03-21  Yuta Kitamura  <[email protected]>
+
+        Use RFC version of WebSocket protocol by default
+        https://bugs.webkit.org/show_bug.cgi?id=81718
+
+        Reviewed by Kent Tamura.
+
+        Flip the default value of Settings::m_useHixie76WebSocketProtocol so WebKit ports will use
+        RFC version of WebSocket protocol by default.
+
+        All the existing ports already use the RFC protocol as of now, so this change will not make
+        any impact (hopefully).
+
+        No new tests. No change in functionality.
+
+        * page/Settings.cpp:
+        (WebCore::Settings::Settings):
+
 2012-03-21  Andrey Kosyakov  <[email protected]>
 
         Web Inspector: only show JS event listeners in Event Listeners tab of Elements panel

Modified: trunk/Source/WebCore/page/Settings.cpp (111574 => 111575)


--- trunk/Source/WebCore/page/Settings.cpp	2012-03-21 17:49:51 UTC (rev 111574)
+++ trunk/Source/WebCore/page/Settings.cpp	2012-03-21 17:51:10 UTC (rev 111575)
@@ -231,7 +231,7 @@
     , m_scrollAnimatorEnabled(true)
 #endif
 #if ENABLE(WEB_SOCKETS)
-    , m_useHixie76WebSocketProtocol(true)
+    , m_useHixie76WebSocketProtocol(false)
 #endif
     , m_mediaPlaybackRequiresUserGesture(false)
     , m_mediaPlaybackAllowsInline(true)
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to