Changeset 201844 in webkit
- Timestamp:
- Jun 8, 2016, 4:19:34 PM (10 years ago)
- Location:
- trunk
- Files:
-
- 4 edited
-
Source/WebCore/ChangeLog (modified) (1 diff)
-
Source/WebCore/platform/network/curl/MultipartHandle.cpp (modified) (1 diff)
-
Tools/ChangeLog (modified) (1 diff)
-
Tools/DumpRenderTree/cairo/PixelDumpSupportCairo.h (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r201841 r201844 1 2016-06-08 Alex Christensen <achristensen@webkit.org> 2 3 Fix WinCairo build. 4 5 * platform/network/curl/MultipartHandle.cpp: 6 (WebCore::MultipartHandle::didReceiveResponse): 7 1 8 2016-06-08 Jer Noble <jer.noble@apple.com> 2 9 -
trunk/Source/WebCore/platform/network/curl/MultipartHandle.cpp
r201769 r201844 351 351 352 352 d->client()->didReceiveResponse(m_resourceHandle, response); 353 m_response->setResponseFired(true);353 response->setResponseFired(true); 354 354 } 355 355 } -
trunk/Tools/ChangeLog
r201836 r201844 1 2016-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 1 9 2016-06-08 Benjamin Poulain <benjamin@webkit.org> 2 10 -
trunk/Tools/DumpRenderTree/cairo/PixelDumpSupportCairo.h
r165676 r201844 28 28 */ 29 29 30 #ifndef PixelDumpSupportCairo_h 31 #define PixelDumpSupportCairo_h 30 #pragma once 32 31 33 #include <wtf/PassRefPtr.h>34 32 #include <wtf/RefCounted.h> 35 33 … … 49 47 class BitmapContext : public RefCounted<BitmapContext> { 50 48 public: 51 static PassRefPtr<BitmapContext> createByAdoptingBitmapAndContext(PlatformBitmapBuffer buffer, cairo_t* context)49 static Ref<BitmapContext> createByAdoptingBitmapAndContext(PlatformBitmapBuffer buffer, cairo_t* context) 52 50 { 53 return adoptRef( new BitmapContext(buffer, context));51 return adoptRef(*new BitmapContext(buffer, context)); 54 52 } 55 53 … … 78 76 cairo_t* m_context; 79 77 }; 80 81 #endif // PixelDumpSupportCairo_h
Note:
See TracChangeset
for help on using the changeset viewer.