⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 201844 in webkit


Ignore:
Timestamp:
Jun 8, 2016, 4:19:34 PM (10 years ago)
Author:
achristensen@apple.com
Message:

Source/WebCore:
Fix WinCairo build.

  • platform/network/curl/MultipartHandle.cpp:

(WebCore::MultipartHandle::didReceiveResponse):

Tools:
Fix WinCairo build

  • DumpRenderTree/cairo/PixelDumpSupportCairo.h:

(BitmapContext::createByAdoptingBitmapAndContext):
(BitmapContext::~BitmapContext):

Location:
trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r201841 r201844  
     12016-06-08  Alex Christensen  <achristensen@webkit.org>
     2
     3        Fix WinCairo build.
     4
     5        * platform/network/curl/MultipartHandle.cpp:
     6        (WebCore::MultipartHandle::didReceiveResponse):
     7
    182016-06-08  Jer Noble  <jer.noble@apple.com>
    29
  • trunk/Source/WebCore/platform/network/curl/MultipartHandle.cpp

    r201769 r201844  
    351351
    352352        d->client()->didReceiveResponse(m_resourceHandle, response);
    353         m_response->setResponseFired(true);
     353        response->setResponseFired(true);
    354354    }
    355355}
  • trunk/Tools/ChangeLog

    r201836 r201844  
     12016-06-08  Alex Christensen  <achristensen@webkit.org>
     2
     3        Fix WinCairo build
     4
     5        * DumpRenderTree/cairo/PixelDumpSupportCairo.h:
     6        (BitmapContext::createByAdoptingBitmapAndContext):
     7        (BitmapContext::~BitmapContext):
     8
    192016-06-08  Benjamin Poulain  <benjamin@webkit.org>
    210
  • trunk/Tools/DumpRenderTree/cairo/PixelDumpSupportCairo.h

    r165676 r201844  
    2828 */
    2929
    30 #ifndef PixelDumpSupportCairo_h
    31 #define PixelDumpSupportCairo_h
     30#pragma once
    3231
    33 #include <wtf/PassRefPtr.h>
    3432#include <wtf/RefCounted.h>
    3533
     
    4947class BitmapContext : public RefCounted<BitmapContext> {
    5048public:
    51     static PassRefPtr<BitmapContext> createByAdoptingBitmapAndContext(PlatformBitmapBuffer buffer, cairo_t* context)
     49    static Ref<BitmapContext> createByAdoptingBitmapAndContext(PlatformBitmapBuffer buffer, cairo_t* context)
    5250    {
    53         return adoptRef(new BitmapContext(buffer, context));
     51        return adoptRef(*new BitmapContext(buffer, context));
    5452    }
    5553
     
    7876    cairo_t* m_context;
    7977};
    80 
    81 #endif // PixelDumpSupportCairo_h
Note: See TracChangeset for help on using the changeset viewer.