Changeset 215685 in webkit
- Timestamp:
- Apr 24, 2017, 10:26:23 AM (8 years ago)
- Location:
- trunk/Source
- Files:
-
- 16 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r215683 r215685 1 2017-04-24 Dan Bernstein <mitz@apple.com> 2 3 [Cocoa] Some ivars are needlessly @protected 4 https://bugs.webkit.org/show_bug.cgi?id=171208 5 6 Reviewed by Anders Carlsson. 7 8 Made ivars @private where possible. 9 10 * platform/mac/WebCoreFullScreenPlaceholderView.h: 11 * platform/mac/WebCoreFullScreenWarningView.h: 12 * platform/mac/WebPlaybackControlsManager.h: 13 * platform/network/cocoa/WebCoreNSURLSession.h: 14 1 15 2017-04-24 Carlos Garcia Campos <cgarcia@igalia.com> 2 16 -
trunk/Source/WebCore/platform/mac/WebCoreFullScreenPlaceholderView.h
r194318 r215685 32 32 33 33 WEBCORE_EXPORT @interface WebCoreFullScreenPlaceholderView : NSView { 34 @private 34 35 RetainPtr<NSVisualEffectView> _effectView; 35 36 RetainPtr<NSTextField> _exitWarning; -
trunk/Source/WebCore/platform/mac/WebCoreFullScreenWarningView.h
r179861 r215685 34 34 35 35 WEBCORE_EXPORT @interface WebCoreFullScreenWarningView : NSBox { 36 @private 36 37 RetainPtr<NSTextField> _textField; 37 38 } -
trunk/Source/WebCore/platform/mac/WebPlaybackControlsManager.h
r215672 r215685 39 39 WEBCORE_EXPORT 40 40 @interface WebPlaybackControlsManager : NSObject <AVTouchBarPlaybackControlsControlling> { 41 @private 41 42 NSTimeInterval _contentDuration; 42 43 RetainPtr<AVValueTiming> _timing; … … 52 53 BOOL _canTogglePlayback; 53 54 54 @private55 55 RefPtr<WebCore::WebPlaybackSessionInterfaceMac> _webPlaybackSessionInterfaceMac; 56 56 } -
trunk/Source/WebCore/platform/network/cocoa/WebCoreNSURLSession.h
r204210 r215685 59 59 60 60 WEBCORE_EXPORT @interface WebCoreNSURLSession : NSObject { 61 @private 61 62 RefPtr<WebCore::PlatformMediaResourceLoader> _loader; 62 63 RetainPtr<id<NSURLSessionDelegate>> _delegate; -
trunk/Source/WebKit/mac/ChangeLog
r215663 r215685 1 2017-04-24 Dan Bernstein <mitz@apple.com> 2 3 [Cocoa] Some ivars are needlessly @protected 4 https://bugs.webkit.org/show_bug.cgi?id=171208 5 6 Reviewed by Anders Carlsson 7 8 Made ivars @private where possible. 9 10 * Misc/WebUserContentURLPattern.h: 11 * Plugins/WebPluginDatabase.h: 12 * Storage/WebDatabaseQuotaManager.h: 13 * WebCoreSupport/WebSecurityOriginPrivate.h: 14 * WebInspector/WebInspector.h: 15 * WebView/WebDeviceOrientation.h: 16 * WebView/WebDeviceOrientationProviderMock.h: 17 * WebView/WebGeolocationPosition.h: 18 * WebView/WebHTMLRepresentation.h: 19 * WebView/WebNotification.h: 20 1 21 2017-04-21 Wenson Hsieh <wenson_hsieh@apple.com> 2 22 -
trunk/Source/WebKit/mac/Misc/WebUserContentURLPattern.h
r95901 r215685 26 26 27 27 @interface WebUserContentURLPattern : NSObject { 28 @private 28 29 WebUserContentURLPatternPrivate *_private; 29 30 } -
trunk/Source/WebKit/mac/Plugins/WebPluginDatabase.h
r168047 r215685 38 38 @interface WebPluginDatabase : NSObject 39 39 { 40 @private 40 41 NSMutableDictionary *plugins; 41 42 NSMutableSet *registeredMIMETypes; -
trunk/Source/WebKit/mac/Storage/WebDatabaseQuotaManager.h
r95901 r215685 27 27 28 28 @interface WebDatabaseQuotaManager : NSObject <WebQuotaManager> { 29 @private 29 30 WebSecurityOrigin *_origin; 30 31 } -
trunk/Source/WebKit/mac/WebCoreSupport/WebSecurityOriginPrivate.h
r171160 r215685 31 31 32 32 @interface WebSecurityOrigin : NSObject { 33 @private 33 34 WebSecurityOriginPrivate *_private; 34 35 id<WebQuotaManager> _applicationCacheQuotaManager; -
trunk/Source/WebKit/mac/WebInspector/WebInspector.h
r189654 r215685 37 37 @interface WebInspector : NSObject 38 38 { 39 @private 39 40 WebView *_inspectedWebView; 40 41 WebInspectorFrontend *_frontend; -
trunk/Source/WebKit/mac/WebView/WebDeviceOrientation.h
r95901 r215685 28 28 29 29 @interface WebDeviceOrientation : NSObject { 30 @private 30 31 WebDeviceOrientationInternal* m_internal; 31 32 } -
trunk/Source/WebKit/mac/WebView/WebDeviceOrientationProviderMock.h
r95901 r215685 30 30 31 31 @interface WebDeviceOrientationProviderMock : NSObject<WebDeviceOrientationProvider> { 32 @private 32 33 WebDeviceOrientationProviderMockInternal* m_internal; 33 34 } -
trunk/Source/WebKit/mac/WebView/WebGeolocationPosition.h
r95901 r215685 28 28 @interface WebGeolocationPosition : NSObject 29 29 { 30 @private 30 31 WebGeolocationPositionInternal *_internal; 31 32 } -
trunk/Source/WebKit/mac/WebView/WebHTMLRepresentation.h
r184843 r215685 46 46 @interface WebHTMLRepresentation : NSObject <WebDocumentRepresentation, WebDocumentDOM> 47 47 { 48 @private 48 49 WebHTMLRepresentationPrivate *_private; 49 50 } -
trunk/Source/WebKit/mac/WebView/WebNotification.h
r213724 r215685 34 34 @interface WebNotification : NSObject 35 35 { 36 @private 36 37 WebNotificationPrivate *_private; 37 38 }
Note:
See TracChangeset
for help on using the changeset viewer.