Changeset 32442 in webkit


Ignore:
Timestamp:
Apr 23, 2008 10:49:52 AM (16 years ago)
Author:
pewtermoose@webkit.org
Message:

WebCore:

2008-04-23 Daniel Zucker <zucker@wake3.com>

Reviewed by Adam Roben.

Fix build errors needed to compile Curl in Cairo build. Add stubs for
didReceiveAuthenticationChallenge, receivedCredential,
receivedRequestToContinueWithoutCredential, and receivedCancellation.
<https://bugs.webkit.org/show_bug.cgi?id=18468>

  • platform/network/ResourceHandle.h:
  • platform/network/curl/ResourceHandleCurl.cpp: (WebCore::ResourceHandle::didReceiveAuthenticationChallenge): (WebCore::ResourceHandle::receivedCredential): (WebCore::ResourceHandle::receivedRequestToContinueWithoutCredential): (WebCore::ResourceHandle::receivedCancellation):

WebKit/win:

2008-04-23 Daniel Zucker <zucker@wake3.com>

Reviewed by Adam Roben.

<https://bugs.webkit.org/show_bug.cgi?id=18468>

  • WebError.h: include RetainPtr.h to fix build errors in Cairo build
Location:
trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r32438 r32442  
     12008-04-23  Daniel Zucker  <zucker@wake3.com>
     2
     3        Reviewed by Adam Roben.
     4
     5        Fix build errors needed to compile Curl in Cairo build.  Add stubs for
     6        didReceiveAuthenticationChallenge, receivedCredential,
     7        receivedRequestToContinueWithoutCredential, and receivedCancellation.
     8        <https://bugs.webkit.org/show_bug.cgi?id=18468>
     9
     10        * platform/network/ResourceHandle.h: 
     11        * platform/network/curl/ResourceHandleCurl.cpp:
     12        (WebCore::ResourceHandle::didReceiveAuthenticationChallenge):
     13        (WebCore::ResourceHandle::receivedCredential):
     14        (WebCore::ResourceHandle::receivedRequestToContinueWithoutCredential):
     15        (WebCore::ResourceHandle::receivedCancellation):
     16
    1172008-04-23  Dan Bernstein  <mitz@apple.com>
    218
  • trunk/WebCore/platform/network/ResourceHandle.h

    r31438 r32442  
    3131#include <wtf/OwnPtr.h>
    3232
     33#if PLATFORM(CF)
     34typedef const struct __CFData * CFDataRef;
     35#endif
    3336
    3437#if PLATFORM(WIN)
     
    104107    ~ResourceHandle();
    105108
    106 #if PLATFORM(MAC) || USE(CFNETWORK)
     109#if PLATFORM(MAC) || USE(CFNETWORK) || USE(CURL)
    107110    void didReceiveAuthenticationChallenge(const AuthenticationChallenge&);
    108111    void receivedCredential(const AuthenticationChallenge&, const Credential&);
  • trunk/WebCore/platform/network/curl/ResourceHandleCurl.cpp

    r31151 r32442  
    177177}
    178178
     179//stubs needed for windows version
     180void ResourceHandle::didReceiveAuthenticationChallenge(const AuthenticationChallenge&)
     181{
     182    notImplemented();
     183}
     184
     185void ResourceHandle::receivedCredential(const AuthenticationChallenge&, const Credential&)
     186{
     187    notImplemented();
     188}
     189
     190void ResourceHandle::receivedRequestToContinueWithoutCredential(const AuthenticationChallenge&)
     191{
     192    notImplemented();
     193}
     194
     195void ResourceHandle::receivedCancellation(const AuthenticationChallenge&)
     196{
     197    notImplemented();
     198}
     199
    179200} // namespace WebCore
  • trunk/WebKit/win/ChangeLog

    r32441 r32442  
     12008-04-23  Daniel Zucker  <zucker@wake3.com>
     2
     3        Reviewed by Adam Roben.
     4
     5        <https://bugs.webkit.org/show_bug.cgi?id=18468>
     6
     7        * WebError.h:  include RetainPtr.h to fix build errors in Cairo build
     8
    192008-04-23  Daniel Zucker  <zucker@wake3.com>
    210
  • trunk/WebKit/win/WebError.h

    r30180 r32442  
    3333#include <WebCore/ResourceError.h>
    3434#pragma warning(pop)
     35
     36#include <wtf/RetainPtr.h>
    3537
    3638class WebError : public IWebError, IWebErrorPrivate {
Note: See TracChangeset for help on using the changeset viewer.