Title: [160782] trunk/Source/WebCore
- Revision
- 160782
- Author
- [email protected]
- Date
- 2013-12-18 11:42:51 -0800 (Wed, 18 Dec 2013)
Log Message
AudioSessionManagerMac.cpp: kLowPowerVideoBufferSize unused before OS X 10.9
https://bugs.webkit.org/show_bug.cgi?id=125935
Patch by Conrad Shultz <[email protected]> on 2013-12-18
Reviewed by Jer Noble.
* platform/audio/mac/AudioSessionManagerMac.cpp:
Add __MAC_OS_X_VERSION_MIN_REQUIRED >= 1090 guard.
Modified Paths
Diff
Modified: trunk/Source/WebCore/ChangeLog (160781 => 160782)
--- trunk/Source/WebCore/ChangeLog 2013-12-18 19:41:36 UTC (rev 160781)
+++ trunk/Source/WebCore/ChangeLog 2013-12-18 19:42:51 UTC (rev 160782)
@@ -1,3 +1,13 @@
+2013-12-18 Conrad Shultz <[email protected]>
+
+ AudioSessionManagerMac.cpp: kLowPowerVideoBufferSize unused before OS X 10.9
+ https://bugs.webkit.org/show_bug.cgi?id=125935
+
+ Reviewed by Jer Noble.
+
+ * platform/audio/mac/AudioSessionManagerMac.cpp:
+ Add __MAC_OS_X_VERSION_MIN_REQUIRED >= 1090 guard.
+
2013-12-18 Joseph Pecoraro <[email protected]>
Web Inspector: Some basic DebuggerAgent cleanup
Modified: trunk/Source/WebCore/platform/audio/mac/AudioSessionManagerMac.cpp (160781 => 160782)
--- trunk/Source/WebCore/platform/audio/mac/AudioSessionManagerMac.cpp 2013-12-18 19:41:36 UTC (rev 160781)
+++ trunk/Source/WebCore/platform/audio/mac/AudioSessionManagerMac.cpp 2013-12-18 19:42:51 UTC (rev 160782)
@@ -34,7 +34,10 @@
using namespace WebCore;
static const size_t kWebAudioBufferSize = 128;
+
+#if __MAC_OS_X_VERSION_MIN_REQUIRED >= 1090
static const size_t kLowPowerVideoBufferSize = 4096;
+#endif
void AudioSessionManager::updateSessionState()
{
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes