Changeset 270069 in webkit


Ignore:
Timestamp:
Nov 19, 2020 9:56:15 PM (3 years ago)
Author:
commit-queue@webkit.org
Message:

Code formatting: change instances of "@synthesize a=b" to "@synthesize a = b".
https://bugs.webkit.org/show_bug.cgi?id=219094

Patch by Hoa Dinh <dvh@apple.com> on 2020-11-19
Reviewed by Wenson Hsieh.

There was a mix of "@synthesize a=b" and "@synthesize a = b" in the codebase.
Most of the instances are "@synthesize a = b", with spaces around the equal sign.
With https://bugs.webkit.org/show_bug.cgi?id=219092, we're changing the behavior of
the code style checker to require spaces around the equal sign.
The change replace all the instances of "@synthesize a=b" with "@synthesize a = b".

Source/WebCore:

  • accessibility/mac/WebAccessibilityObjectWrapperBase.mm:
  • platform/graphics/avfoundation/objc/MediaPlayerPrivateAVFoundationObjC.mm:
  • platform/graphics/avfoundation/objc/SourceBufferParserAVFObjC.mm:
  • platform/graphics/cocoa/WebGPULayer.mm:
  • platform/mac/VideoFullscreenInterfaceMac.mm:
  • platform/mac/WebPlaybackControlsManager.mm:
  • platform/network/cocoa/WebCoreNSURLSession.mm:

Source/WebKit:

  • NetworkProcess/CustomProtocols/Cocoa/LegacyCustomProtocolManagerCocoa.mm:
  • UIProcess/API/Cocoa/WKPreviewActionItem.mm:
  • UIProcess/API/Cocoa/_WKThumbnailView.mm:
  • UIProcess/Cocoa/WebViewImpl.mm:
  • UIProcess/QuickLookThumbnailLoader.mm:
  • UIProcess/WebAuthentication/Mock/MockNfcService.mm:
  • UIProcess/ios/fullscreen/WKFullScreenViewController.mm:
  • UIProcess/mac/ViewGestureControllerMac.mm:
  • UIProcess/mac/WKFullScreenWindowController.mm:
  • WebProcess/Plugins/PDF/PDFPlugin.mm:

Source/WebKitLegacy/mac:

  • WebView/WebFullScreenController.mm:
  • WebView/WebView.mm:

Tools:

  • DumpRenderTree/DumpRenderTreeFileDraggingSource.m:
  • DumpRenderTree/mac/DumpRenderTreeDraggingInfo.mm:
  • MiniBrowser/mac/BrowserWindowController.m:
  • TestRunnerShared/cocoa/LayoutTestSpellChecker.mm:
  • TestWebKitAPI/Tests/WebKit/mac/CustomBundleObject.mm:
  • TestWebKitAPI/Tests/WebKitCocoa/IDBCheckpointWAL.mm:
  • TestWebKitAPI/mac/DragAndDropSimulatorMac.mm:
  • TestWebKitAPI/mac/TestDraggingInfo.mm:
  • TestWebKitAPI/mac/TestFontOptions.mm:
Location:
trunk
Files:
32 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r270067 r270069  
     12020-11-19  Hoa Dinh  <dvh@apple.com>
     2
     3        Code formatting: change instances of "@synthesize a=b" to "@synthesize a = b".
     4        https://bugs.webkit.org/show_bug.cgi?id=219094
     5
     6        Reviewed by Wenson Hsieh.
     7
     8        There was a mix of "@synthesize a=b" and "@synthesize a = b" in the codebase.
     9        Most of the instances are "@synthesize a = b", with spaces around the equal sign.
     10        With https://bugs.webkit.org/show_bug.cgi?id=219092, we're changing the behavior of
     11        the code style checker to require spaces around the equal sign.
     12        The change replace all the instances of "@synthesize a=b" with "@synthesize a = b".
     13
     14        * accessibility/mac/WebAccessibilityObjectWrapperBase.mm:
     15        * platform/graphics/avfoundation/objc/MediaPlayerPrivateAVFoundationObjC.mm:
     16        * platform/graphics/avfoundation/objc/SourceBufferParserAVFObjC.mm:
     17        * platform/graphics/cocoa/WebGPULayer.mm:
     18        * platform/mac/VideoFullscreenInterfaceMac.mm:
     19        * platform/mac/WebPlaybackControlsManager.mm:
     20        * platform/network/cocoa/WebCoreNSURLSession.mm:
     21
    1222020-11-19  Ada Chan  <adachan@apple.com>
    223
  • trunk/Source/WebCore/accessibility/mac/WebAccessibilityObjectWrapperBase.mm

    r269923 r270069  
    277277@implementation WebAccessibilityObjectWrapperBase
    278278
    279 @synthesize identifier=_identifier;
     279@synthesize identifier = _identifier;
    280280
    281281- (id)initWithAccessibilityObject:(AXCoreObject*)axObject
  • trunk/Source/WebCore/platform/graphics/avfoundation/objc/MediaPlayerPrivateAVFoundationObjC.mm

    r269850 r270069  
    36443644@implementation WebCoreAVFPullDelegate
    36453645
    3646 @synthesize semaphore=m_semaphore;
     3646@synthesize semaphore = m_semaphore;
    36473647
    36483648- (void)outputMediaDataWillChange:(AVPlayerItemVideoOutput *)output
  • trunk/Source/WebCore/platform/graphics/avfoundation/objc/SourceBufferParserAVFObjC.mm

    r269711 r270069  
    7878}
    7979
    80 @synthesize parent=_parent;
     80@synthesize parent = _parent;
    8181
    8282- (void)dealloc
  • trunk/Source/WebCore/platform/graphics/cocoa/WebGPULayer.mm

    r260366 r270069  
    3434@implementation WebGPULayer
    3535
    36 @synthesize swapChain=_swapChain;
     36@synthesize swapChain = _swapChain;
    3737
    3838- (id)init
  • trunk/Source/WebCore/platform/mac/VideoFullscreenInterfaceMac.mm

    r269557 r270069  
    7676@implementation WebVideoViewContainer
    7777
    78 @synthesize videoViewContainerDelegate=_videoViewContainerDelegate;
     78@synthesize videoViewContainerDelegate = _videoViewContainerDelegate;
    7979
    8080- (void)resizeWithOldSuperviewSize:(NSSize)oldBoundsSize
     
    135135@implementation WebVideoFullscreenInterfaceMacObjC
    136136
    137 @synthesize playing=_playing;
    138 @synthesize videoDimensions=_videoDimensions;
    139 @synthesize exitingToStandardFullscreen=_exitingToStandardFullscreen;
     137@synthesize playing = _playing;
     138@synthesize videoDimensions = _videoDimensions;
     139@synthesize exitingToStandardFullscreen = _exitingToStandardFullscreen;
    140140
    141141- (instancetype)initWithVideoFullscreenInterfaceMac:(WebCore::VideoFullscreenInterfaceMac*)videoFullscreenInterfaceMac
  • trunk/Source/WebCore/platform/mac/WebPlaybackControlsManager.mm

    r266218 r270069  
    4646@implementation WebPlaybackControlsManager
    4747
    48 @synthesize seekToTime=_seekToTime;
    49 @synthesize hasEnabledAudio=_hasEnabledAudio;
    50 @synthesize hasEnabledVideo=_hasEnabledVideo;
    51 @synthesize rate=_rate;
    52 @synthesize canTogglePlayback=_canTogglePlayback;
     48@synthesize seekToTime = _seekToTime;
     49@synthesize hasEnabledAudio = _hasEnabledAudio;
     50@synthesize hasEnabledVideo = _hasEnabledVideo;
     51@synthesize rate = _rate;
     52@synthesize canTogglePlayback = _canTogglePlayback;
    5353@synthesize allowsPictureInPicturePlayback;
    5454@synthesize pictureInPictureActive;
  • trunk/Source/WebCore/platform/network/cocoa/WebCoreNSURLSession.mm

    r264054 r270069  
    732732
    733733#pragma mark - NSURLSession API
    734 @synthesize session=_session;
    735 @synthesize taskIdentifier=_taskIdentifier;
    736 @synthesize originalRequest=_originalRequest;
    737 @synthesize currentRequest=_currentRequest;
    738 @synthesize countOfBytesReceived=_countOfBytesReceived;
    739 @synthesize countOfBytesSent=_countOfBytesSent;
    740 @synthesize countOfBytesExpectedToSend=_countOfBytesExpectedToSend;
    741 @synthesize countOfBytesExpectedToReceive=_countOfBytesExpectedToReceive;
    742 @synthesize state=_state;
    743 @synthesize error=_error;
    744 @synthesize taskDescription=_taskDescription;
    745 @synthesize priority=_priority;
     734@synthesize session = _session;
     735@synthesize taskIdentifier = _taskIdentifier;
     736@synthesize originalRequest = _originalRequest;
     737@synthesize currentRequest = _currentRequest;
     738@synthesize countOfBytesReceived = _countOfBytesReceived;
     739@synthesize countOfBytesSent = _countOfBytesSent;
     740@synthesize countOfBytesExpectedToSend = _countOfBytesExpectedToSend;
     741@synthesize countOfBytesExpectedToReceive = _countOfBytesExpectedToReceive;
     742@synthesize state = _state;
     743@synthesize error = _error;
     744@synthesize taskDescription = _taskDescription;
     745@synthesize priority = _priority;
    746746
    747747- (NSURLResponse *)response
  • trunk/Source/WebKit/ChangeLog

    r270061 r270069  
     12020-11-19  Hoa Dinh  <dvh@apple.com>
     2
     3        Code formatting: change instances of "@synthesize a=b" to "@synthesize a = b".
     4        https://bugs.webkit.org/show_bug.cgi?id=219094
     5
     6        Reviewed by Wenson Hsieh.
     7
     8        There was a mix of "@synthesize a=b" and "@synthesize a = b" in the codebase.
     9        Most of the instances are "@synthesize a = b", with spaces around the equal sign.
     10        With https://bugs.webkit.org/show_bug.cgi?id=219092, we're changing the behavior of
     11        the code style checker to require spaces around the equal sign.
     12        The change replace all the instances of "@synthesize a=b" with "@synthesize a = b".
     13
     14        * NetworkProcess/CustomProtocols/Cocoa/LegacyCustomProtocolManagerCocoa.mm:
     15        * UIProcess/API/Cocoa/WKPreviewActionItem.mm:
     16        * UIProcess/API/Cocoa/_WKThumbnailView.mm:
     17        * UIProcess/Cocoa/WebViewImpl.mm:
     18        * UIProcess/QuickLookThumbnailLoader.mm:
     19        * UIProcess/WebAuthentication/Mock/MockNfcService.mm:
     20        * UIProcess/ios/fullscreen/WKFullScreenViewController.mm:
     21        * UIProcess/mac/ViewGestureControllerMac.mm:
     22        * UIProcess/mac/WKFullScreenWindowController.mm:
     23        * WebProcess/Plugins/PDF/PDFPlugin.mm:
     24
    1252020-11-19  Brent Fulgham  <bfulgham@apple.com>
    226
  • trunk/Source/WebKit/NetworkProcess/CustomProtocols/Cocoa/LegacyCustomProtocolManagerCocoa.mm

    r260191 r270069  
    7070@implementation WKCustomProtocol
    7171
    72 @synthesize customProtocolID=_customProtocolID;
     72@synthesize customProtocolID = _customProtocolID;
    7373
    7474+ (BOOL)canInitWithRequest:(NSURLRequest *)request
  • trunk/Source/WebKit/UIProcess/API/Cocoa/WKPreviewActionItem.mm

    r245691 r270069  
    3030
    3131@implementation WKPreviewAction
    32 @synthesize identifier=_identifier;
     32@synthesize identifier = _identifier;
    3333
    3434ALLOW_DEPRECATED_DECLARATIONS_BEGIN
  • trunk/Source/WebKit/UIProcess/API/Cocoa/_WKThumbnailView.mm

    r254241 r270069  
    6161}
    6262
    63 @synthesize _waitingForSnapshot=_waitingForSnapshot;
     63@synthesize _waitingForSnapshot = _waitingForSnapshot;
    6464
    6565- (instancetype)initWithFrame:(NSRect)frame
  • trunk/Source/WebKit/UIProcess/Cocoa/WebViewImpl.mm

    r269869 r270069  
    524524@implementation WKTextListTouchBarViewController
    525525
    526 @synthesize currentListType=_currentListType;
     526@synthesize currentListType = _currentListType;
    527527
    528528static const CGFloat listControlSegmentWidth = 67;
     
    638638@implementation WKTextTouchBarItemController
    639639
    640 @synthesize textIsBold=_textIsBold;
    641 @synthesize textIsItalic=_textIsItalic;
    642 @synthesize textIsUnderlined=_textIsUnderlined;
    643 @synthesize currentTextAlignment=_currentTextAlignment;
     640@synthesize textIsBold = _textIsBold;
     641@synthesize textIsItalic = _textIsItalic;
     642@synthesize textIsUnderlined = _textIsUnderlined;
     643@synthesize currentTextAlignment = _currentTextAlignment;
    644644
    645645- (instancetype)initWithWebViewImpl:(WebKit::WebViewImpl*)webViewImpl
  • trunk/Source/WebKit/UIProcess/QuickLookThumbnailLoader.mm

    r266743 r270069  
    144144}
    145145
    146 @synthesize executing=_executing;
     146@synthesize executing = _executing;
    147147
    148148- (BOOL)isExecuting
     
    164164}
    165165
    166 @synthesize finished=_finished;
     166@synthesize finished = _finished;
    167167
    168168- (BOOL)isFinished
  • trunk/Source/WebKit/UIProcess/WebAuthentication/Mock/MockNfcService.mm

    r251645 r270069  
    5858}
    5959
    60 @synthesize technology=_technology;
    61 @synthesize AppData=_AppData;
    62 @synthesize UID=_UID;
    63 @synthesize ndefAvailability=_ndefAvailability;
    64 @synthesize ndefMessageSize=_ndefMessageSize;
    65 @synthesize ndefContainerSize=_ndefContainerSize;
    66 @synthesize tagA=_tagA;
    67 @synthesize tagB=_tagB;
    68 @synthesize tagF=_tagF;
     60@synthesize technology = _technology;
     61@synthesize AppData = _AppData;
     62@synthesize UID = _UID;
     63@synthesize ndefAvailability = _ndefAvailability;
     64@synthesize ndefMessageSize = _ndefMessageSize;
     65@synthesize ndefContainerSize = _ndefContainerSize;
     66@synthesize tagA = _tagA;
     67@synthesize tagB = _tagB;
     68@synthesize tagF = _tagF;
    6969
    7070- (NFTagType)type
  • trunk/Source/WebKit/UIProcess/ios/fullscreen/WKFullScreenViewController.mm

    r268268 r270069  
    123123}
    124124
    125 @synthesize prefersStatusBarHidden=_prefersStatusBarHidden;
    126 @synthesize prefersHomeIndicatorAutoHidden=_prefersHomeIndicatorAutoHidden;
     125@synthesize prefersStatusBarHidden = _prefersStatusBarHidden;
     126@synthesize prefersHomeIndicatorAutoHidden = _prefersHomeIndicatorAutoHidden;
    127127
    128128#pragma mark - External Interface
  • trunk/Source/WebKit/UIProcess/mac/ViewGestureControllerMac.mm

    r263825 r270069  
    7777
    7878@implementation WKSwipeCancellationTracker
    79 @synthesize isCancelled=_isCancelled;
     79@synthesize isCancelled = _isCancelled;
    8080@end
    8181
  • trunk/Source/WebKit/UIProcess/mac/WKFullScreenWindowController.mm

    r269557 r270069  
    171171#pragma mark Accessors
    172172
    173 @synthesize initialFrame=_initialFrame;
    174 @synthesize finalFrame=_finalFrame;
     173@synthesize initialFrame = _initialFrame;
     174@synthesize finalFrame = _finalFrame;
    175175
    176176- (BOOL)isFullScreen
  • trunk/Source/WebKit/WebProcess/Plugins/PDF/PDFPlugin.mm

    r268989 r270069  
    162162@implementation WKPDFPluginAccessibilityObject
    163163
    164 @synthesize parent=_parent;
    165 @synthesize pdfPlugin=_pdfPlugin;
     164@synthesize parent = _parent;
     165@synthesize pdfPlugin = _pdfPlugin;
    166166
    167167- (id)initWithPDFPlugin:(WebKit::PDFPlugin *)plugin
     
    360360@implementation WKPDFPluginScrollbarLayer
    361361
    362 @synthesize pdfPlugin=_pdfPlugin;
     362@synthesize pdfPlugin = _pdfPlugin;
    363363
    364364- (id)initWithPDFPlugin:(WebKit::PDFPlugin *)plugin
     
    394394@implementation WKPDFLayerControllerDelegate
    395395
    396 @synthesize pdfPlugin=_pdfPlugin;
     396@synthesize pdfPlugin = _pdfPlugin;
    397397
    398398- (id)initWithPDFPlugin:(WebKit::PDFPlugin *)plugin
  • trunk/Source/WebKitLegacy/mac/ChangeLog

    r269888 r270069  
     12020-11-19  Hoa Dinh  <dvh@apple.com>
     2
     3        Code formatting: change instances of "@synthesize a=b" to "@synthesize a = b".
     4        https://bugs.webkit.org/show_bug.cgi?id=219094
     5
     6        Reviewed by Wenson Hsieh.
     7
     8        There was a mix of "@synthesize a=b" and "@synthesize a = b" in the codebase.
     9        Most of the instances are "@synthesize a = b", with spaces around the equal sign.
     10        With https://bugs.webkit.org/show_bug.cgi?id=219092, we're changing the behavior of
     11        the code style checker to require spaces around the equal sign.
     12        The change replace all the instances of "@synthesize a=b" with "@synthesize a = b".
     13
     14        * WebView/WebFullScreenController.mm:
     15        * WebView/WebView.mm:
     16
    1172020-11-16  Sam Weinig  <weinig@apple.com>
    218
  • trunk/Source/WebKitLegacy/mac/WebView/WebFullScreenController.mm

    r254241 r270069  
    102102}
    103103
    104 @synthesize initialFrame=_initialFrame;
    105 @synthesize finalFrame=_finalFrame;
     104@synthesize initialFrame = _initialFrame;
     105@synthesize finalFrame = _finalFrame;
    106106
    107107- (void)windowDidLoad
  • trunk/Source/WebKitLegacy/mac/WebView/WebView.mm

    r269888 r270069  
    808808@implementation WebUITextIndicatorData
    809809
    810 @synthesize dataInteractionImage=_dataInteractionImage;
    811 @synthesize selectionRectInRootViewCoordinates=_selectionRectInRootViewCoordinates;
    812 @synthesize textBoundingRectInRootViewCoordinates=_textBoundingRectInRootViewCoordinates;
    813 @synthesize textRectsInBoundingRectCoordinates=_textRectsInBoundingRectCoordinates;
    814 @synthesize contentImageWithHighlight=_contentImageWithHighlight;
    815 @synthesize contentImageWithoutSelection=_contentImageWithoutSelection;
    816 @synthesize contentImageWithoutSelectionRectInRootViewCoordinates=_contentImageWithoutSelectionRectInRootViewCoordinates;
    817 @synthesize contentImage=_contentImage;
    818 @synthesize estimatedBackgroundColor=_estimatedBackgroundColor;
     810@synthesize dataInteractionImage = _dataInteractionImage;
     811@synthesize selectionRectInRootViewCoordinates = _selectionRectInRootViewCoordinates;
     812@synthesize textBoundingRectInRootViewCoordinates = _textBoundingRectInRootViewCoordinates;
     813@synthesize textRectsInBoundingRectCoordinates = _textRectsInBoundingRectCoordinates;
     814@synthesize contentImageWithHighlight = _contentImageWithHighlight;
     815@synthesize contentImageWithoutSelection = _contentImageWithoutSelection;
     816@synthesize contentImageWithoutSelectionRectInRootViewCoordinates = _contentImageWithoutSelectionRectInRootViewCoordinates;
     817@synthesize contentImage = _contentImage;
     818@synthesize estimatedBackgroundColor = _estimatedBackgroundColor;
    819819
    820820- (void)dealloc
     
    986986@implementation WebTextListTouchBarViewController
    987987
    988 @synthesize currentListType=_currentListType;
     988@synthesize currentListType = _currentListType;
    989989
    990990static const CGFloat listControlSegmentWidth = 67.0;
     
    10921092@implementation WebTextTouchBarItemController
    10931093
    1094 @synthesize textIsBold=_textIsBold;
    1095 @synthesize textIsItalic=_textIsItalic;
    1096 @synthesize textIsUnderlined=_textIsUnderlined;
    1097 @synthesize currentTextAlignment=_currentTextAlignment;
     1094@synthesize textIsBold = _textIsBold;
     1095@synthesize textIsItalic = _textIsItalic;
     1096@synthesize textIsUnderlined = _textIsUnderlined;
     1097@synthesize currentTextAlignment = _currentTextAlignment;
    10981098
    10991099- (instancetype)initWithWebView:(WebView *)webView
     
    49834983
    49844984#if PLATFORM(IOS_FAMILY)
    4985 @synthesize asyncForwarder=_asyncForwarder;
     4985@synthesize asyncForwarder = _asyncForwarder;
    49864986
    49874987- (void)dealloc
  • trunk/Tools/ChangeLog

    r270068 r270069  
     12020-11-19  Hoa Dinh  <dvh@apple.com>
     2
     3        Code formatting: change instances of "@synthesize a=b" to "@synthesize a = b".
     4        https://bugs.webkit.org/show_bug.cgi?id=219094
     5
     6        Reviewed by Wenson Hsieh.
     7
     8        There was a mix of "@synthesize a=b" and "@synthesize a = b" in the codebase.
     9        Most of the instances are "@synthesize a = b", with spaces around the equal sign.
     10        With https://bugs.webkit.org/show_bug.cgi?id=219092, we're changing the behavior of
     11        the code style checker to require spaces around the equal sign.
     12        The change replace all the instances of "@synthesize a=b" with "@synthesize a = b".
     13
     14        * DumpRenderTree/DumpRenderTreeFileDraggingSource.m:
     15        * DumpRenderTree/mac/DumpRenderTreeDraggingInfo.mm:
     16        * MiniBrowser/mac/BrowserWindowController.m:
     17        * TestRunnerShared/cocoa/LayoutTestSpellChecker.mm:
     18        * TestWebKitAPI/Tests/WebKit/mac/CustomBundleObject.mm:
     19        * TestWebKitAPI/Tests/WebKitCocoa/IDBCheckpointWAL.mm:
     20        * TestWebKitAPI/mac/DragAndDropSimulatorMac.mm:
     21        * TestWebKitAPI/mac/TestDraggingInfo.mm:
     22        * TestWebKitAPI/mac/TestFontOptions.mm:
     23
    1242020-11-19  Hoa Dinh  <dvh@apple.com>
    225
  • trunk/Tools/DumpRenderTree/DumpRenderTreeFileDraggingSource.m

    r229297 r270069  
    3333@implementation DumpRenderTreeFileDraggingSource
    3434
    35 @synthesize promisedFileURLs=_promisedFileURLs;
     35@synthesize promisedFileURLs = _promisedFileURLs;
    3636
    3737- (instancetype)initWithPromisedFileURLs:(NSArray<NSURL *> *)promisedFileURLs
  • trunk/Tools/DumpRenderTree/mac/DumpRenderTreeDraggingInfo.mm

    r260334 r270069  
    5353@implementation DumpRenderTreeFilePromiseReceiver
    5454
    55 @synthesize draggingSource=_draggingSource;
     55@synthesize draggingSource = _draggingSource;
    5656
    5757- (instancetype)initWithPromisedUTIs:(NSArray<NSString *> *)promisedUTIs
  • trunk/Tools/MiniBrowser/mac/BrowserWindowController.m

    r265061 r270069  
    3434@implementation BrowserWindowController
    3535
    36 @synthesize editable=_editable;
     36@synthesize editable = _editable;
    3737
    3838- (id)initWithWindow:(NSWindow *)window
  • trunk/Tools/TestRunnerShared/cocoa/LayoutTestSpellChecker.mm

    r267761 r270069  
    170170@implementation LayoutTestSpellChecker
    171171
    172 @synthesize spellCheckerLoggingEnabled=_spellCheckerLoggingEnabled;
     172@synthesize spellCheckerLoggingEnabled = _spellCheckerLoggingEnabled;
    173173
    174174+ (instancetype)checker
  • trunk/Tools/TestWebKitAPI/Tests/WebKit/mac/CustomBundleObject.mm

    r233207 r270069  
    3333@implementation CustomBundleObject
    3434
    35 @synthesize somePayload=_somePayload;
     35@synthesize somePayload = _somePayload;
    3636
    3737- (id)initWithValue:(long)value
  • trunk/Tools/TestWebKitAPI/Tests/WebKitCocoa/IDBCheckpointWAL.mm

    r267763 r270069  
    4545@implementation IDBCheckpointWALMessageHandler
    4646
    47 @synthesize receivedScriptMessage=_receivedScriptMessage;
    48 @synthesize lastScriptMessage=_lastScriptMessage;
     47@synthesize receivedScriptMessage = _receivedScriptMessage;
     48@synthesize lastScriptMessage = _lastScriptMessage;
    4949
    5050- (void)dealloc
  • trunk/Tools/TestWebKitAPI/mac/DragAndDropSimulatorMac.mm

    r262507 r270069  
    101101}
    102102
    103 @synthesize currentDragOperation=_currentDragOperation;
    104 @synthesize initialDragImageLocationInView=_initialDragImageLocationInView;
     103@synthesize currentDragOperation = _currentDragOperation;
     104@synthesize initialDragImageLocationInView = _initialDragImageLocationInView;
    105105
    106106- (instancetype)initWithWebViewFrame:(CGRect)frame
  • trunk/Tools/TestWebKitAPI/mac/TestDraggingInfo.mm

    r246141 r270069  
    5151}
    5252
    53 @synthesize draggingSourceOperationMask=_draggingSourceOperationMask;
    54 @synthesize draggingLocation=_draggingLocation;
    55 @synthesize draggingFormation=_draggingFormation;
    56 @synthesize numberOfValidItemsForDrop=_numberOfValidItemsForDrop;
     53@synthesize draggingSourceOperationMask = _draggingSourceOperationMask;
     54@synthesize draggingLocation = _draggingLocation;
     55@synthesize draggingFormation = _draggingFormation;
     56@synthesize numberOfValidItemsForDrop = _numberOfValidItemsForDrop;
    5757
    5858- (NSArray<NSFilePromiseReceiver *> *)filePromiseReceivers
     
    129129// The following methods are not currently used by WebKit.
    130130
    131 @synthesize draggedImageLocation=_draggedImageLocation;
    132 @synthesize draggingSequenceNumber=_draggingSequenceNumber;
    133 @synthesize animatesToDestination=_animatesToDestination;
    134 @synthesize springLoadingHighlight=_springLoadingHighlight;
     131@synthesize draggedImageLocation = _draggedImageLocation;
     132@synthesize draggingSequenceNumber = _draggingSequenceNumber;
     133@synthesize animatesToDestination = _animatesToDestination;
     134@synthesize springLoadingHighlight = _springLoadingHighlight;
    135135
    136136- (NSWindow *)draggingDestinationWindow
  • trunk/Tools/TestWebKitAPI/mac/TestFontOptions.mm

    r248846 r270069  
    6060}
    6161
    62 @synthesize hasShadow=_hasShadow;
    63 @synthesize shadowBlurRadius=_shadowBlurRadius;
    64 @synthesize hasMultipleFonts=_hasMultipleFonts;
     62@synthesize hasShadow = _hasShadow;
     63@synthesize shadowBlurRadius = _shadowBlurRadius;
     64@synthesize hasMultipleFonts = _hasMultipleFonts;
    6565
    6666+ (instancetype)sharedInstance
Note: See TracChangeset for help on using the changeset viewer.