Changeset 100703 in webkit


Ignore:
Timestamp:
Nov 17, 2011 5:18:41 PM (12 years ago)
Author:
mrowe@apple.com
Message:

Roll out r100668 until I can work out why we're using such an ancient version of Xcode on our SnowLeopard bots.

Location:
trunk/Source
Files:
8 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r100702 r100703  
    248248        * rendering/RenderObject.cpp:
    249249        (WebCore::RenderObject::paintOutline):
    250 
    251 2011-11-17  Mark Rowe  <mrowe@apple.com>
    252 
    253         <http://webkit.org/b/72646> Disable deprecation warnings around code where we cannot easily
    254         switch away from the deprecated APIs.
    255 
    256         Reviewed by Dan Bernstein.
    257 
    258         * platform/mac/WebCoreNSStringExtras.mm:
    259         * platform/network/cf/SocketStreamHandleCFNet.cpp:
    260         (WebCore::SocketStreamHandle::reportErrorToClient):
    261250
    2622512011-11-17  Mark Rowe  <mrowe@apple.com>
  • trunk/Source/WebCore/platform/mac/WebCoreNSStringExtras.mm

    r100668 r100703  
    6969}
    7070
    71 #pragma GCC diagnostic push
    72 #pragma GCC diagnostic ignored "-Wdeprecated-declarations"
    73 
    7471CFStringEncoding stringEncodingForResource(Handle resource)
    7572{
     
    114111}
    115112
    116 #pragma GCC diagnostic pop
  • trunk/Source/WebCore/platform/network/cf/SocketStreamHandleCFNet.cpp

    r100668 r100703  
    543543
    544544#if PLATFORM(MAC)
    545 #pragma GCC diagnostic push
    546 #pragma GCC diagnostic ignored "-Wdeprecated-declarations"
    547 
    548545    if (CFEqual(CFErrorGetDomain(error), kCFErrorDomainOSStatus)) {
    549546        const char* descriptionOSStatus = GetMacOSStatusCommentString(static_cast<OSStatus>(errorCode));
     
    551548            description = "OSStatus Error " + String::number(errorCode) + ": " + descriptionOSStatus;
    552549    }
    553 
    554 #pragma GCC diagnostic pop
    555550#endif
    556551
  • trunk/Source/WebKit/mac/ChangeLog

    r100668 r100703  
    1 2011-11-17  Mark Rowe  <mrowe@apple.com>
    2 
    3         <http://webkit.org/b/72646> Disable deprecation warnings around code where we cannot easily
    4         switch away from the deprecated APIs.
    5 
    6         Reviewed by Dan Bernstein.
    7 
    8         * Plugins/WebBasePluginPackage.mm:
    9         * Plugins/WebNetscapePluginPackage.mm:
    10         (-[WebNetscapePluginPackage _tryLoad]):
    11 
    1212011-11-16  Dan Bernstein  <mitz@apple.com>
    132
  • trunk/Source/WebKit/mac/Plugins/WebBasePluginPackage.mm

    r100668 r100703  
    9494}
    9595
    96 #pragma GCC diagnostic push
    97 #pragma GCC diagnostic ignored "-Wdeprecated-declarations"
    98 // FIXME: Rewrite this in terms of -[NSURL URLByResolvingBookmarkData:…].
    9996static NSString *pathByResolvingSymlinksAndAliases(NSString *thePath)
    10097{
     
    122119    return newPath;
    123120}
    124 #pragma GCC diagnostic pop
    125121
    126122- (id)initWithPath:(NSString *)pluginPath
  • trunk/Source/WebKit/mac/Plugins/WebNetscapePluginPackage.mm

    r100668 r100703  
    123123}
    124124
    125 #pragma GCC diagnostic push
    126 #pragma GCC diagnostic ignored "-Wdeprecated-declarations"
    127 
    128125- (NSString *)stringForStringListID:(SInt16)stringListID andIndex:(SInt16)index
    129126{
     
    205202    return YES;
    206203}
    207 
    208 #pragma GCC diagnostic pop
    209204
    210205- (BOOL)_initWithPath:(NSString *)pluginPath
     
    430425    }
    431426#endif /* SUPPORT_CFM */
    432 
    433 #pragma GCC diagnostic push
    434 #pragma GCC diagnostic ignored "-Wdeprecated-declarations"
     427   
    435428    // Plugins (at least QT) require that you call UseResFile on the resource file before loading it.
    436429    resourceRef = [self openResourceFile];
     
    438431        UseResFile(resourceRef);
    439432    }
    440 #pragma GCC diagnostic pop
    441 
     433   
    442434    // swap function tables
    443435#ifdef SUPPORT_CFM
  • trunk/Source/WebKit2/ChangeLog

    r100680 r100703  
    1818        (CoreIPC::decodeOperation):
    1919        * Shared/WebCoreArgumentCoders.h:
    20 
    21 2011-11-17  Mark Rowe  <mrowe@apple.com>
    22 
    23         <http://webkit.org/b/72646> Disable deprecation warnings around code where we cannot easily
    24         switch away from the deprecated APIs.
    25 
    26         Reviewed by Dan Bernstein.
    27 
    28         * Shared/Plugins/Netscape/mac/NetscapePluginModuleMac.mm:
    2920
    30212011-11-17  Jesus Sanchez-Palencia  <jesus.palencia@openbossa.org>
  • trunk/Source/WebKit2/Shared/Plugins/Netscape/mac/NetscapePluginModuleMac.mm

    r100668 r100703  
    217217}
    218218
    219 #pragma GCC diagnostic push
    220 #pragma GCC diagnostic ignored "-Wdeprecated-declarations"
    221 
    222219class ResourceMap {
    223220public:
     
    288285}
    289286
    290 #pragma GCC diagnostic pop
    291 
    292287static const ResID PluginNameOrDescriptionStringNumber = 126;
    293288static const ResID MIMEDescriptionStringNumber = 127;
Note: See TracChangeset for help on using the changeset viewer.