Title: [169855] trunk/Source/WebCore
- Revision
- 169855
- Author
- [email protected]
- Date
- 2014-06-11 16:12:30 -0700 (Wed, 11 Jun 2014)
Log Message
Fix the Mac build.
* WebCore.exp.in: Exported __ZN7WebCore19ResourceRequestBase15setHTTPReferrerERKN3WTF6StringE
* platform/graphics/avfoundation/objc/SourceBufferPrivateAVFObjC.mm: Moved ivar declarations to @interface to account for the 32-bit legacy runtime.
Modified Paths
Diff
Modified: trunk/Source/WebCore/ChangeLog (169854 => 169855)
--- trunk/Source/WebCore/ChangeLog 2014-06-11 23:06:43 UTC (rev 169854)
+++ trunk/Source/WebCore/ChangeLog 2014-06-11 23:12:30 UTC (rev 169855)
@@ -1,3 +1,10 @@
+2014-06-11 Andy Estes <[email protected]>
+
+ Fix the Mac build.
+
+ * WebCore.exp.in: Exported __ZN7WebCore19ResourceRequestBase15setHTTPReferrerERKN3WTF6StringE
+ * platform/graphics/avfoundation/objc/SourceBufferPrivateAVFObjC.mm: Moved ivar declarations to @interface to account for the 32-bit legacy runtime.
+
2014-06-11 Simon Fraser <[email protected]>
Make FrameView 8 bytes smaller
Modified: trunk/Source/WebCore/WebCore.exp.in (169854 => 169855)
--- trunk/Source/WebCore/WebCore.exp.in 2014-06-11 23:06:43 UTC (rev 169854)
+++ trunk/Source/WebCore/WebCore.exp.in 2014-06-11 23:12:30 UTC (rev 169855)
@@ -817,6 +817,7 @@
__ZN7WebCore19MediaSessionManager9addClientEPNS_25MediaSessionManagerClientE
__ZN7WebCore19ResourceRequestBase11setHTTPBodyEN3WTF10PassRefPtrINS_8FormDataEEE
__ZN7WebCore19ResourceRequestBase13setHTTPMethodERKN3WTF6StringE
+__ZN7WebCore19ResourceRequestBase15setHTTPReferrerERKN3WTF6StringE
__ZN7WebCore19ResourceRequestBase18setHTTPHeaderFieldEPKcRKN3WTF6StringE
__ZN7WebCore19ResourceRequestBase19addHTTPHeaderFieldsERKNS_13HTTPHeaderMapE
__ZN7WebCore19ResourceRequestBase22defaultTimeoutIntervalEv
Modified: trunk/Source/WebCore/platform/graphics/avfoundation/objc/SourceBufferPrivateAVFObjC.mm (169854 => 169855)
--- trunk/Source/WebCore/platform/graphics/avfoundation/objc/SourceBufferPrivateAVFObjC.mm 2014-06-11 23:06:43 UTC (rev 169854)
+++ trunk/Source/WebCore/platform/graphics/avfoundation/objc/SourceBufferPrivateAVFObjC.mm 2014-06-11 23:12:30 UTC (rev 169855)
@@ -283,7 +283,12 @@
}
@end
-@interface WebAVSampleBufferErrorListener : NSObject
+@interface WebAVSampleBufferErrorListener : NSObject {
+ WebCore::SourceBufferPrivateAVFObjC* _parent;
+ Vector<RetainPtr<AVSampleBufferDisplayLayer>> _layers;
+ Vector<RetainPtr<AVSampleBufferAudioRenderer>> _renderers;
+}
+
- (id)initWithParent:(WebCore::SourceBufferPrivateAVFObjC*)parent;
- (void)invalidate;
- (void)beginObservingLayer:(AVSampleBufferDisplayLayer *)layer;
@@ -292,11 +297,7 @@
- (void)stopObservingRenderer:(AVSampleBufferAudioRenderer *)renderer;
@end
-@implementation WebAVSampleBufferErrorListener {
- WebCore::SourceBufferPrivateAVFObjC* _parent;
- Vector<RetainPtr<AVSampleBufferDisplayLayer>> _layers;
- Vector<RetainPtr<AVSampleBufferAudioRenderer>> _renderers;
-}
+@implementation WebAVSampleBufferErrorListener
- (id)initWithParent:(WebCore::SourceBufferPrivateAVFObjC*)parent
{
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes