Changeset 181273 in webkit


Ignore:
Timestamp:
Mar 9, 2015 11:58:31 AM (9 years ago)
Author:
ddkilzer@apple.com
Message:

[iOS] Fix build when compiling with dead code stripping disabled
<http://webkit.org/b/142467>

Reviewed by Simon Fraser.

Source/WebKit/ios:

  • WebCoreSupport/WebInspectorClientIOS.mm:

(WebInspectorFrontendClient::save): Add missing method.

Source/WebKit/mac:

  • Configurations/WebKitLegacy.xcconfig:

(EXCLUDED_SOURCE_FILE_NAMES[sdk=iphone*]): Disable mig code
generation and compilation for out-of-process plugin support.
This was never used on iOS.

Location:
trunk/Source/WebKit
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/ios/ChangeLog

    r180110 r181273  
     12015-03-09  David Kilzer  <ddkilzer@apple.com>
     2
     3        [iOS] Fix build when compiling with dead code stripping disabled
     4        <http://webkit.org/b/142467>
     5
     6        Reviewed by Simon Fraser.
     7
     8        * WebCoreSupport/WebInspectorClientIOS.mm:
     9        (WebInspectorFrontendClient::save): Add missing method.
     10
    1112015-02-14  Alexey Proskuryakov  <ap@apple.com>
    212
  • trunk/Source/WebKit/ios/WebCoreSupport/WebInspectorClientIOS.mm

    r173929 r181273  
    139139void WebInspectorFrontendClient::inspectedURLChanged(const String&) { }
    140140void WebInspectorFrontendClient::updateWindowTitle() const { }
     141void WebInspectorFrontendClient::save(const String&, const String&, bool, bool) { }
    141142void WebInspectorFrontendClient::append(const String&, const String&) { }
    142143
  • trunk/Source/WebKit/mac/ChangeLog

    r181155 r181273  
     12015-03-09  David Kilzer  <ddkilzer@apple.com>
     2
     3        [iOS] Fix build when compiling with dead code stripping disabled
     4        <http://webkit.org/b/142467>
     5
     6        Reviewed by Simon Fraser.
     7
     8        * Configurations/WebKitLegacy.xcconfig:
     9        (EXCLUDED_SOURCE_FILE_NAMES[sdk=iphone*]): Disable mig code
     10        generation and compilation for out-of-process plugin support.
     11        This was never used on iOS.
     12
    1132015-03-06  Myles C. Maxfield  <mmaxfield@apple.com>
    214
  • trunk/Source/WebKit/mac/Configurations/WebKitLegacy.xcconfig

    r179450 r181273  
    2525#include "Version.xcconfig"
    2626
    27 EXCLUDED_SOURCE_FILE_NAMES[sdk=iphone*] = *.nib *.pdf *.tiff CarbonUtils.m CarbonWindowAdapter.mm CarbonWindowContentView.m CarbonWindowFrame.m HIViewAdapter.m HIWebView.mm OutlookQuirksUserScript.js PopupMenuMac.mm SearchPopupMenuMac.mm WebActionMenuController.* WebClipView.* WebDashboardRegion.* WebDynamicScrollBarsView.* WebIconDatabase.* WebIconDatabasePrivate.* WebInspectorClient.mm WebJavaScriptTextInputPanel.* WebKeyGenerator.* WebNetscapeContainerCheckContextInfo.* WebNetscapeContainerCheckPrivate.* WebNSEventExtras.* WebNSPasteboardExtras.* WebNSWindowExtras.* WebPanelAuthenticationHandler.* WebPluginsPrivate.* WebStringTruncator.* WebTextCompletionController.*;
     27EXCLUDED_SOURCE_FILE_NAMES[sdk=iphone*] = *.defs *.nib *.pdf *.tiff CarbonUtils.m CarbonWindowAdapter.mm CarbonWindowContentView.m CarbonWindowFrame.m HIViewAdapter.m HIWebView.mm OutlookQuirksUserScript.js PopupMenuMac.mm SearchPopupMenuMac.mm WebActionMenuController.* WebClipView.* WebDashboardRegion.* WebDynamicScrollBarsView.* WebIconDatabase.* WebIconDatabasePrivate.* WebInspectorClient.mm WebJavaScriptTextInputPanel.* WebKeyGenerator.* WebNetscapeContainerCheckContextInfo.* WebNetscapeContainerCheckPrivate.* WebNSEventExtras.* WebNSPasteboardExtras.* WebNSWindowExtras.* WebPanelAuthenticationHandler.* WebPluginsPrivate.* WebStringTruncator.* WebTextCompletionController.*;
    2828EXCLUDED_SOURCE_FILE_NAMES[sdk=macosx*] = *IOS.mm MemoryMeasure.h WebCaretChangeListener.h WebFixedPositionContent.h WebFrameIOS.h WebFrameIPhone.h WebGeolocationCoreLocationProvider.h WebGeolocationPrivate.h WebGeolocationProviderIOS.h WebMIMETypeRegistry.h WebNSStringExtrasIOS.h WebNSStringExtrasIPhone.h WebPDFViewIOS.h WebPDFViewIPhone.h WebPDFViewPlaceholder.h WebSelectionRect.h WebUIKitDelegate.h WebUIKitSupport.h WebVisiblePosition.h;
    2929
Note: See TracChangeset for help on using the changeset viewer.