Changeset 115206 in webkit
- Timestamp:
- Apr 25, 2012, 7:42:24 AM (13 years ago)
- Location:
- trunk/Source
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/Platform/ChangeLog
r115200 r115206 1 2012-04-25 Gavin Peters <gavinp@chromium.org> 2 3 [Chromium] Fix some conditional compilation logic in Platform 4 https://bugs.webkit.org/show_bug.cgi?id=83798 5 6 Reviewed by Darin Fisher. 7 8 * chromium/public/WebURLError.h: 9 (WebURLError): 10 * chromium/public/WebURLRequest.h: 11 (WebURLRequest): 12 * chromium/public/WebURLResponse.h: 13 (WebURLResponse): 14 1 15 2012-04-25 Gavin Peters <gavinp@chromium.org> 2 16 -
trunk/Source/Platform/chromium/public/WebURLError.h
r115086 r115206 35 35 #include "WebURL.h" 36 36 37 #if defined(WEBKIT_IMPLEMENTATION)37 #if WEBKIT_IMPLEMENTATION 38 38 namespace WebCore { class ResourceError; } 39 39 #endif … … 65 65 WebURLError() : reason(0), isCancellation(false) { } 66 66 67 #if defined(WEBKIT_IMPLEMENTATION)67 #if WEBKIT_IMPLEMENTATION 68 68 WebURLError(const WebCore::ResourceError&); 69 69 WebURLError& operator=(const WebCore::ResourceError&); -
trunk/Source/Platform/chromium/public/WebURLRequest.h
r112501 r115206 35 35 #include "WebHTTPBody.h" 36 36 37 #if defined(WEBKIT_IMPLEMENTATION)37 #if WEBKIT_IMPLEMENTATION 38 38 namespace WebCore { class ResourceRequest; } 39 39 #endif … … 183 183 WEBKIT_EXPORT void setExtraData(ExtraData*); 184 184 185 #if defined(WEBKIT_IMPLEMENTATION)185 #if WEBKIT_IMPLEMENTATION 186 186 WebCore::ResourceRequest& toMutableResourceRequest(); 187 187 const WebCore::ResourceRequest& toResourceRequest() const; -
trunk/Source/Platform/chromium/public/WebURLResponse.h
r112501 r115206 35 35 #include "WebPrivateOwnPtr.h" 36 36 37 #if defined(WEBKIT_IMPLEMENTATION)37 #if WEBKIT_IMPLEMENTATION 38 38 namespace WebCore { class ResourceResponse; } 39 39 #endif … … 134 134 WEBKIT_EXPORT void setSecurityInfo(const WebCString&); 135 135 136 #if defined(WEBKIT_IMPLEMENTATION)136 #if WEBKIT_IMPLEMENTATION 137 137 WebCore::ResourceResponse& toMutableResourceResponse(); 138 138 const WebCore::ResourceResponse& toResourceResponse() const; -
trunk/Source/WebKit/chromium/ChangeLog
r115205 r115206 1 2012-04-25 Gavin Peters <gavinp@chromium.org> 2 3 [Chromium] Fix some conditional compilation logic in Platform 4 https://bugs.webkit.org/show_bug.cgi?id=83798 5 6 Reviewed by Darin Fisher. 7 8 * tests/WebFrameTest.cpp: 9 (WebKit::TestReloadDoesntRedirectWebFrameClient::cancelledError): 10 1 11 2012-04-25 Yury Semikhatsky <yurys@chromium.org> 2 12 -
trunk/Source/WebKit/chromium/tests/WebFrameTest.cpp
r113782 r115206 274 274 // Return a dummy error so the DocumentLoader doesn't assert when 275 275 // the reload cancels it. 276 return WebURLError(WebCore::ResourceError("", 1, "", "cancelled")); 276 WebURLError webURLError; 277 webURLError.domain = ""; 278 webURLError.reason = 1; 279 webURLError.isCancellation = true; 280 webURLError.unreachableURL = WebURL(); 281 return webURLError; 277 282 } 278 283 };
Note:
See TracChangeset
for help on using the changeset viewer.