Title: [169843] trunk/Source/WebCore
Revision
169843
Author
[email protected]
Date
2014-06-11 14:57:55 -0700 (Wed, 11 Jun 2014)

Log Message

Unreviwed Mac release build fix; mark the keyPath parameter as unused.

* platform/graphics/avfoundation/objc/SourceBufferPrivateAVFObjC.mm:
(-[WebAVSampleBufferErrorListener observeValueForKeyPath:ofObject:change:context:]):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (169842 => 169843)


--- trunk/Source/WebCore/ChangeLog	2014-06-11 21:43:55 UTC (rev 169842)
+++ trunk/Source/WebCore/ChangeLog	2014-06-11 21:57:55 UTC (rev 169843)
@@ -1,3 +1,10 @@
+2014-06-11  Jer Noble  <[email protected]>
+
+        Unreviwed Mac release build fix; mark the keyPath parameter as unused.
+
+        * platform/graphics/avfoundation/objc/SourceBufferPrivateAVFObjC.mm:
+        (-[WebAVSampleBufferErrorListener observeValueForKeyPath:ofObject:change:context:]):
+
 2014-06-11  Brent Fulgham  <[email protected]>
 
         [Win] Avoid deadlock with AVFoundation

Modified: trunk/Source/WebCore/platform/graphics/avfoundation/objc/SourceBufferPrivateAVFObjC.mm (169842 => 169843)


--- trunk/Source/WebCore/platform/graphics/avfoundation/objc/SourceBufferPrivateAVFObjC.mm	2014-06-11 21:43:55 UTC (rev 169842)
+++ trunk/Source/WebCore/platform/graphics/avfoundation/objc/SourceBufferPrivateAVFObjC.mm	2014-06-11 21:57:55 UTC (rev 169843)
@@ -373,6 +373,7 @@
 - (void)observeValueForKeyPath:(NSString *)keyPath ofObject:(id)object change:(NSDictionary *)change context:(void *)context
 {
     UNUSED_PARAM(context);
+    UNUSED_PARAM(keyPath);
     ASSERT(_parent);
 
     RetainPtr<WebAVSampleBufferErrorListener> strongSelf = self;
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to