Diff
Modified: trunk/LayoutTests/ChangeLog (158230 => 158231)
--- trunk/LayoutTests/ChangeLog 2013-10-29 21:50:47 UTC (rev 158230)
+++ trunk/LayoutTests/ChangeLog 2013-10-29 22:03:07 UTC (rev 158231)
@@ -1,3 +1,12 @@
+2013-10-29 Jer Noble <[email protected]>
+
+ [MSE] [Mac] Enable MediaSource on the Mac
+ https://bugs.webkit.org/show_bug.cgi?id=122484
+
+ Reviewed by Darin Adler.
+
+ * platform/mac/js/dom/global-constructors-attributes-expected.txt: Added.
+
2013-10-29 Eric Carlson <[email protected]>
[Mac MediaStream] implement AVFoundation backed MediaStreamSource
Modified: trunk/LayoutTests/platform/mac/js/dom/global-constructors-attributes-expected.txt (158230 => 158231)
--- trunk/LayoutTests/platform/mac/js/dom/global-constructors-attributes-expected.txt 2013-10-29 21:50:47 UTC (rev 158230)
+++ trunk/LayoutTests/platform/mac/js/dom/global-constructors-attributes-expected.txt 2013-10-29 22:03:07 UTC (rev 158231)
@@ -823,6 +823,11 @@
PASS Object.getOwnPropertyDescriptor(global, 'MediaList').hasOwnProperty('set') is false
PASS Object.getOwnPropertyDescriptor(global, 'MediaList').enumerable is false
PASS Object.getOwnPropertyDescriptor(global, 'MediaList').configurable is true
+PASS Object.getOwnPropertyDescriptor(global, 'MediaSource').value is MediaSource
+PASS Object.getOwnPropertyDescriptor(global, 'MediaSource').hasOwnProperty('get') is false
+PASS Object.getOwnPropertyDescriptor(global, 'MediaSource').hasOwnProperty('set') is false
+PASS Object.getOwnPropertyDescriptor(global, 'MediaSource').enumerable is false
+PASS Object.getOwnPropertyDescriptor(global, 'MediaSource').configurable is true
PASS Object.getOwnPropertyDescriptor(global, 'MessageChannel').value is MessageChannel
PASS Object.getOwnPropertyDescriptor(global, 'MessageChannel').hasOwnProperty('get') is false
PASS Object.getOwnPropertyDescriptor(global, 'MessageChannel').hasOwnProperty('set') is false
@@ -1953,6 +1958,11 @@
PASS Object.getOwnPropertyDescriptor(global, 'WebKitMediaKeys').hasOwnProperty('set') is false
PASS Object.getOwnPropertyDescriptor(global, 'WebKitMediaKeys').enumerable is false
PASS Object.getOwnPropertyDescriptor(global, 'WebKitMediaKeys').configurable is true
+PASS Object.getOwnPropertyDescriptor(global, 'WebKitMediaSource').value is WebKitMediaSource
+PASS Object.getOwnPropertyDescriptor(global, 'WebKitMediaSource').hasOwnProperty('get') is false
+PASS Object.getOwnPropertyDescriptor(global, 'WebKitMediaSource').hasOwnProperty('set') is false
+PASS Object.getOwnPropertyDescriptor(global, 'WebKitMediaSource').enumerable is false
+PASS Object.getOwnPropertyDescriptor(global, 'WebKitMediaSource').configurable is true
PASS Object.getOwnPropertyDescriptor(global, 'WebKitMutationObserver').value is WebKitMutationObserver
PASS Object.getOwnPropertyDescriptor(global, 'WebKitMutationObserver').hasOwnProperty('get') is false
PASS Object.getOwnPropertyDescriptor(global, 'WebKitMutationObserver').hasOwnProperty('set') is false
@@ -1963,6 +1973,16 @@
PASS Object.getOwnPropertyDescriptor(global, 'WebKitPoint').hasOwnProperty('set') is false
PASS Object.getOwnPropertyDescriptor(global, 'WebKitPoint').enumerable is false
PASS Object.getOwnPropertyDescriptor(global, 'WebKitPoint').configurable is true
+PASS Object.getOwnPropertyDescriptor(global, 'WebKitSourceBuffer').value is WebKitSourceBuffer
+PASS Object.getOwnPropertyDescriptor(global, 'WebKitSourceBuffer').hasOwnProperty('get') is false
+PASS Object.getOwnPropertyDescriptor(global, 'WebKitSourceBuffer').hasOwnProperty('set') is false
+PASS Object.getOwnPropertyDescriptor(global, 'WebKitSourceBuffer').enumerable is false
+PASS Object.getOwnPropertyDescriptor(global, 'WebKitSourceBuffer').configurable is true
+PASS Object.getOwnPropertyDescriptor(global, 'WebKitSourceBufferList').value is WebKitSourceBufferList
+PASS Object.getOwnPropertyDescriptor(global, 'WebKitSourceBufferList').hasOwnProperty('get') is false
+PASS Object.getOwnPropertyDescriptor(global, 'WebKitSourceBufferList').hasOwnProperty('set') is false
+PASS Object.getOwnPropertyDescriptor(global, 'WebKitSourceBufferList').enumerable is false
+PASS Object.getOwnPropertyDescriptor(global, 'WebKitSourceBufferList').configurable is true
PASS Object.getOwnPropertyDescriptor(global, 'WebKitTransitionEvent').value is WebKitTransitionEvent
PASS Object.getOwnPropertyDescriptor(global, 'WebKitTransitionEvent').hasOwnProperty('get') is false
PASS Object.getOwnPropertyDescriptor(global, 'WebKitTransitionEvent').hasOwnProperty('set') is false
Modified: trunk/Source/WTF/ChangeLog (158230 => 158231)
--- trunk/Source/WTF/ChangeLog 2013-10-29 21:50:47 UTC (rev 158230)
+++ trunk/Source/WTF/ChangeLog 2013-10-29 22:03:07 UTC (rev 158231)
@@ -1,3 +1,15 @@
+2013-10-29 Jer Noble <[email protected]>
+
+ [MSE] [Mac] Enable MediaSource on the Mac
+ https://bugs.webkit.org/show_bug.cgi?id=122484
+
+ Reviewed by Darin Adler.
+
+ Enable ENABLE_MEDIA_SOURCE.
+
+ * wtf/FeatureDefines.h:
+ * wtf/Platform.h: Force a clean build.
+
2013-10-29 Andreas Kling <[email protected]>
StringImpl::adopt() should return PassRef.
Modified: trunk/Source/WTF/wtf/FeatureDefines.h (158230 => 158231)
--- trunk/Source/WTF/wtf/FeatureDefines.h 2013-10-29 21:50:47 UTC (rev 158230)
+++ trunk/Source/WTF/wtf/FeatureDefines.h 2013-10-29 22:03:07 UTC (rev 158231)
@@ -224,6 +224,10 @@
#define ENABLE_INPUT_TYPE_COLOR_POPOVER 1
#endif
+#if !defined(ENABLE_MEDIA_SOURCE)
+#define ENABLE_MEDIA_SOURCE 1
+#endif
+
#endif /* PLATFORM(MAC) && !PLATFORM(IOS) */
/* --------- Apple Windows port --------- */
Modified: trunk/Source/WTF/wtf/Platform.h (158230 => 158231)
--- trunk/Source/WTF/wtf/Platform.h 2013-10-29 21:50:47 UTC (rev 158230)
+++ trunk/Source/WTF/wtf/Platform.h 2013-10-29 22:03:07 UTC (rev 158231)
@@ -31,7 +31,6 @@
/* Include compiler specific macros */
#include <wtf/Compiler.h>
-
/* ==== PLATFORM handles OS, operating environment, graphics API, and
CPU. This macro will be phased out in favor of platform adaptation
macros, policy decision macros, and top-level port definitions. ==== */
Modified: trunk/Source/WebCore/ChangeLog (158230 => 158231)
--- trunk/Source/WebCore/ChangeLog 2013-10-29 21:50:47 UTC (rev 158230)
+++ trunk/Source/WebCore/ChangeLog 2013-10-29 22:03:07 UTC (rev 158231)
@@ -1,3 +1,14 @@
+2013-10-29 Jer Noble <[email protected]>
+
+ [MSE] [Mac] Enable MediaSource on the Mac
+ https://bugs.webkit.org/show_bug.cgi?id=122484
+
+ Reviewed by Darin Adler.
+
+ Enable ENABLE_MEDIA_SOURCE.
+
+ * Configurations/FeatureDefines.xcconfig:
+
2013-10-29 Tim Horton <[email protected]>
Build fix after 158223; make TileController use float for scales.
Modified: trunk/Source/WebCore/Configurations/FeatureDefines.xcconfig (158230 => 158231)
--- trunk/Source/WebCore/Configurations/FeatureDefines.xcconfig 2013-10-29 21:50:47 UTC (rev 158230)
+++ trunk/Source/WebCore/Configurations/FeatureDefines.xcconfig 2013-10-29 22:03:07 UTC (rev 158231)
@@ -124,7 +124,7 @@
ENABLE_LINK_PREFETCH = ;
ENABLE_MATHML = ENABLE_MATHML;
ENABLE_MEDIA_CONTROLS_SCRIPT = ENABLE_MEDIA_CONTROLS_SCRIPT;
-ENABLE_MEDIA_SOURCE = ;
+ENABLE_MEDIA_SOURCE = ENABLE_MEDIA_SOURCE;
ENABLE_MEDIA_STATISTICS = ;
ENABLE_METER_ELEMENT = ENABLE_METER_ELEMENT;
ENABLE_MHTML = ;
Modified: trunk/Source/WebKit/mac/ChangeLog (158230 => 158231)
--- trunk/Source/WebKit/mac/ChangeLog 2013-10-29 21:50:47 UTC (rev 158230)
+++ trunk/Source/WebKit/mac/ChangeLog 2013-10-29 22:03:07 UTC (rev 158231)
@@ -1,3 +1,14 @@
+2013-10-29 Jer Noble <[email protected]>
+
+ [MSE] [Mac] Enable MediaSource on the Mac
+ https://bugs.webkit.org/show_bug.cgi?id=122484
+
+ Reviewed by Darin Adler.
+
+ Enable ENABLE_MEDIA_SOURCE.
+
+ * Configurations/FeatureDefines.xcconfig:
+
2013-10-28 Joseph Pecoraro <[email protected]>
Upstream remaining PLATFORM(IOS) and ENABLE(REMOTE_INSPECTOR) pieces
Modified: trunk/Source/WebKit/mac/Configurations/FeatureDefines.xcconfig (158230 => 158231)
--- trunk/Source/WebKit/mac/Configurations/FeatureDefines.xcconfig 2013-10-29 21:50:47 UTC (rev 158230)
+++ trunk/Source/WebKit/mac/Configurations/FeatureDefines.xcconfig 2013-10-29 22:03:07 UTC (rev 158231)
@@ -124,7 +124,7 @@
ENABLE_LINK_PREFETCH = ;
ENABLE_MATHML = ENABLE_MATHML;
ENABLE_MEDIA_CONTROLS_SCRIPT = ENABLE_MEDIA_CONTROLS_SCRIPT;
-ENABLE_MEDIA_SOURCE = ;
+ENABLE_MEDIA_SOURCE = ENABLE_MEDIA_SOURCE;
ENABLE_MEDIA_STATISTICS = ;
ENABLE_METER_ELEMENT = ENABLE_METER_ELEMENT;
ENABLE_MHTML = ;
Modified: trunk/Source/WebKit2/ChangeLog (158230 => 158231)
--- trunk/Source/WebKit2/ChangeLog 2013-10-29 21:50:47 UTC (rev 158230)
+++ trunk/Source/WebKit2/ChangeLog 2013-10-29 22:03:07 UTC (rev 158231)
@@ -1,3 +1,14 @@
+2013-10-29 Jer Noble <[email protected]>
+
+ [MSE] [Mac] Enable MediaSource on the Mac
+ https://bugs.webkit.org/show_bug.cgi?id=122484
+
+ Reviewed by Darin Adler.
+
+ Enable ENABLE_MEDIA_SOURCE.
+
+ * Configurations/FeatureDefines.xcconfig:
+
2013-10-29 Tim Horton <[email protected]>
More correct build fix after 158223.
Modified: trunk/Source/WebKit2/Configurations/FeatureDefines.xcconfig (158230 => 158231)
--- trunk/Source/WebKit2/Configurations/FeatureDefines.xcconfig 2013-10-29 21:50:47 UTC (rev 158230)
+++ trunk/Source/WebKit2/Configurations/FeatureDefines.xcconfig 2013-10-29 22:03:07 UTC (rev 158231)
@@ -124,7 +124,7 @@
ENABLE_LINK_PREFETCH = ;
ENABLE_MATHML = ENABLE_MATHML;
ENABLE_MEDIA_CONTROLS_SCRIPT = ENABLE_MEDIA_CONTROLS_SCRIPT;
-ENABLE_MEDIA_SOURCE = ;
+ENABLE_MEDIA_SOURCE = ENABLE_MEDIA_SOURCE;
ENABLE_MEDIA_STATISTICS = ;
ENABLE_METER_ELEMENT = ENABLE_METER_ELEMENT;
ENABLE_MHTML = ;