Modified: trunk/LayoutTests/ChangeLog (95150 => 95151)
--- trunk/LayoutTests/ChangeLog 2011-09-15 02:12:36 UTC (rev 95150)
+++ trunk/LayoutTests/ChangeLog 2011-09-15 02:26:42 UTC (rev 95151)
@@ -1,3 +1,15 @@
+2011-09-14 Henrik Grunell <grun...@google.com>
+
+ MediaStream API: Change PeerConnection constructor name to webkitPeerConnection
+ https://bugs.webkit.org/show_bug.cgi?id=67843
+
+ Reviewed by Tony Gentilcore.
+
+ Tests for the MediaStream API will be provided by the bug 56587, pending enough landed code.
+
+ * fast/dom/call-a-constructor-as-a-function.html:
+ * platform/chromium/fast/dom/call-a-constructor-as-a-function-expected.txt:
+
2011-09-14 David Levin <le...@chromium.org>
[chromium] rebaselines due to r95096, r95121, and r95129.
Modified: trunk/LayoutTests/fast/dom/call-a-constructor-as-a-function.html (95150 => 95151)
--- trunk/LayoutTests/fast/dom/call-a-constructor-as-a-function.html 2011-09-15 02:12:36 UTC (rev 95150)
+++ trunk/LayoutTests/fast/dom/call-a-constructor-as-a-function.html 2011-09-15 02:26:42 UTC (rev 95151)
@@ -10,7 +10,7 @@
</p>
</div>
<script>
-var test_constructors = ["ArrayBuffer", "AudioContext", "FormData", "DataView", "EventSource", "FileReader", "Float32Array", "Float64Array", "Audio", "Image", "Option", "Int16Array", "Int32Array", "Int8Array", "MessageChannel", "PeerConnection", "SharedWorker", "Uint16Array", "Uint32Array", "Uint8Array", "WebKitCSSMatrix", "WebKitPoint", "WebSocket", "Worker", "XMLHttpRequest", "XSLTProcessor"];
+var test_constructors = ["ArrayBuffer", "AudioContext", "FormData", "DataView", "EventSource", "FileReader", "Float32Array", "Float64Array", "Audio", "Image", "Option", "Int16Array", "Int32Array", "Int8Array", "MessageChannel", "webkitPeerConnection", "SharedWorker", "Uint16Array", "Uint32Array", "Uint8Array", "WebKitCSSMatrix", "WebKitPoint", "WebSocket", "Worker", "XMLHttpRequest", "XSLTProcessor"];
test_constructors.forEach(function (constructor) {
if (eval("window." + constructor))
Modified: trunk/Source/WebCore/ChangeLog (95150 => 95151)
--- trunk/Source/WebCore/ChangeLog 2011-09-15 02:12:36 UTC (rev 95150)
+++ trunk/Source/WebCore/ChangeLog 2011-09-15 02:26:42 UTC (rev 95151)
@@ -1,3 +1,16 @@
+2011-09-14 Henrik Grunell <grun...@google.com>
+
+ MediaStream API: Change PeerConnection constructor name to webkitPeerConnection
+ https://bugs.webkit.org/show_bug.cgi?id=67843
+
+ Reviewed by Tony Gentilcore.
+
+ Tests for the MediaStream API will be provided by the bug 56587, pending enough landed code.
+
+ * bindings/generic/RuntimeEnabledFeatures.h:
+ (WebCore::RuntimeEnabledFeatures::webkitPeerConnectionEnabled):
+ * page/DOMWindow.idl:
+
2011-09-14 John Bauman <jbau...@chromium.org>
Make sure to GC decoded images that are only used with WebGL
Modified: trunk/Source/WebCore/page/DOMWindow.idl (95150 => 95151)
--- trunk/Source/WebCore/page/DOMWindow.idl 2011-09-15 02:12:36 UTC (rev 95150)
+++ trunk/Source/WebCore/page/DOMWindow.idl 2011-09-15 02:26:42 UTC (rev 95151)
@@ -337,7 +337,7 @@
attribute [Conditional=DEVICE_ORIENTATION,EnabledAtRuntime] EventListener ondevicemotion;
attribute [Conditional=DEVICE_ORIENTATION,EnabledAtRuntime] EventListener ondeviceorientation;
- attribute [Conditional=MEDIA_STREAM,EnabledAtRuntime] PeerConnectionConstructor PeerConnection;
+ attribute [Conditional=MEDIA_STREAM,EnabledAtRuntime] PeerConnectionConstructor webkitPeerConnection;
// EventTarget interface
[Custom] void addEventListener(in DOMString type,