Changeset 146931 in webkit


Ignore:
Timestamp:
Mar 26, 2013 2:42:26 PM (11 years ago)
Author:
ap@apple.com
Message:

Follow-up to:
<rdar://problem/13194263> Crashes in NetworkProcess due to threading issues
https://bugs.webkit.org/show_bug.cgi?id=113256

Reviewed by Mark Rowe.

  • NetworkProcess/NetworkResourceLoader.h: Added some forgotten OVERRIDEs.
Location:
trunk/Source/WebKit2
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit2/ChangeLog

    r146929 r146931  
     12013-03-26  Alexey Proskuryakov  <ap@apple.com>
     2
     3        Follow-up to:
     4        <rdar://problem/13194263> Crashes in NetworkProcess due to threading issues
     5        https://bugs.webkit.org/show_bug.cgi?id=113256
     6
     7        Reviewed by Mark Rowe.
     8
     9        * NetworkProcess/NetworkResourceLoader.h: Added some forgotten OVERRIDEs.
     10
    1112013-03-26  Alexey Proskuryakov  <ap@apple.com>
    212
  • trunk/Source/WebKit2/NetworkProcess/NetworkResourceLoader.h

    r146929 r146931  
    7979
    8080#if USE(PROTECTION_SPACE_AUTH_CALLBACK)
    81     virtual void canAuthenticateAgainstProtectionSpaceAsync(WebCore::ResourceHandle*, const WebCore::ProtectionSpace&);
     81    virtual void canAuthenticateAgainstProtectionSpaceAsync(WebCore::ResourceHandle*, const WebCore::ProtectionSpace&) OVERRIDE;
    8282#endif
    8383
     
    8989#if PLATFORM(MAC)
    9090    static size_t fileBackedResourceMinimumSize();
    91     virtual void willCacheResponseAsync(WebCore::ResourceHandle*, NSCachedURLResponse *);
     91    virtual void willCacheResponseAsync(WebCore::ResourceHandle*, NSCachedURLResponse *) OVERRIDE;
    9292    virtual void willStopBufferingData(WebCore::ResourceHandle*, const char*, int) OVERRIDE;
    9393#endif // PLATFORM(MAC)
Note: See TracChangeset for help on using the changeset viewer.