Changeset 106753 in webkit
- Timestamp:
- Feb 4, 2012, 6:53:18 PM (13 years ago)
- Location:
- trunk
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebKit2/ChangeLog
r106751 r106753 1 2012-02-04 Dan Bernstein <mitz@apple.com> 2 3 <rdar://problem/10660698> Clients cannot prevent caching of individual responses 4 https://bugs.webkit.org/show_bug.cgi?id=77822 5 6 Reviewed by Sam Weinig. 7 8 * Shared/APIClientTraits.cpp: Added definition of interfaceSizesByVersion for 9 WKBundlePageResourceLoadClient. 10 * Shared/APIClientTraits.h: Added APIClientTraits specialization for WKBundlePageResourceLoadClient. 11 * WebProcess/InjectedBundle/API/c/WKBundlePage.h: Added WKBundlePageShouldCacheResponseCallback 12 typedef, added shouldCacheResponse member to WKBundlePageResourceLoadClient, and bumped 13 kWKBundlePageResourceLoadClientCurrentVersion to 1. 14 * WebProcess/InjectedBundle/InjectedBundlePageResourceLoadClient.cpp: 15 (WebKit::InjectedBundlePageResourceLoadClient::shouldCacheResponse): Added. Calls through 16 to the client if it implements shouldCacheResponse. Returns true otherwise. 17 * WebProcess/InjectedBundle/InjectedBundlePageResourceLoadClient.h: 18 * WebProcess/WebCoreSupport/WebFrameLoaderClient.cpp: 19 (WebKit::WebFrameLoaderClient::willCacheResponse): Changed to call 20 InjectedBundlePageResourceLoadClient::shouldCacheResponse() and return nil if the former 21 returns false. 22 (WebKit::WebFrameLoaderClient::shouldCacheResponse): Changed to call 23 InjectedBundlePageResourceLoadClient::shouldCacheResponse(). 24 1 25 2012-02-04 Sam Weinig <sam@webkit.org> 2 26 -
trunk/Source/WebKit2/Shared/APIClientTraits.cpp
r99101 r106753 36 36 }; 37 37 38 const size_t APIClientTraits<WKBundlePageResourceLoadClient>::interfaceSizesByVersion[] = { 39 offsetof(WKBundlePageResourceLoadClient, shouldCacheResponse), 40 sizeof(WKBundlePageResourceLoadClient) 41 }; 42 38 43 const size_t APIClientTraits<WKPageContextMenuClient>::interfaceSizesByVersion[] = { 39 44 offsetof(WKPageContextMenuClient, contextMenuDismissed), -
trunk/Source/WebKit2/Shared/APIClientTraits.h
r99101 r106753 32 32 namespace WebKit { 33 33 34 template <typename ClientInterface> struct APIClientTraits 35 { 34 template <typename ClientInterface> struct APIClientTraits { 36 35 static const size_t interfaceSizesByVersion[1]; 37 36 }; 38 37 template <typename ClientInterface> const size_t APIClientTraits<ClientInterface>::interfaceSizesByVersion[] = { sizeof(ClientInterface) }; 39 38 40 template<> struct APIClientTraits<WKBundlePageLoaderClient> 41 { 39 template<> struct APIClientTraits<WKBundlePageLoaderClient> { 40 static const size_t interfaceSizesByVersion[2]; 41 }; 42 43 template<> struct APIClientTraits<WKBundlePageResourceLoadClient> { 42 44 static const size_t interfaceSizesByVersion[2]; 43 45 }; … … 51 53 }; 52 54 53 template<> struct APIClientTraits<WKPageUIClient> 54 { 55 template<> struct APIClientTraits<WKPageUIClient> { 55 56 static const size_t interfaceSizesByVersion[2]; 56 57 }; -
trunk/Source/WebKit2/WebProcess/InjectedBundle/API/c/WKBundlePage.h
r99096 r106753 165 165 typedef void (*WKBundlePageDidFinishLoadForResourceCallback)(WKBundlePageRef, WKBundleFrameRef, uint64_t resourceIdentifier, const void* clientInfo); 166 166 typedef void (*WKBundlePageDidFailLoadForResourceCallback)(WKBundlePageRef, WKBundleFrameRef, uint64_t resourceIdentifier, WKErrorRef, const void* clientInfo); 167 typedef bool (*WKBundlePageShouldCacheResponseCallback)(WKBundlePageRef, WKBundleFrameRef, uint64_t resourceIdentifier, const void* clientInfo); 167 168 168 169 struct WKBundlePageResourceLoadClient { 169 170 int version; 170 171 const void * clientInfo; 172 173 // Version 0. 171 174 WKBundlePageDidInitiateLoadForResourceCallback didInitiateLoadForResource; 172 175 … … 178 181 WKBundlePageDidFinishLoadForResourceCallback didFinishLoadForResource; 179 182 WKBundlePageDidFailLoadForResourceCallback didFailLoadForResource; 183 184 // Version 1. 185 WKBundlePageShouldCacheResponseCallback shouldCacheResponse; 180 186 }; 181 187 typedef struct WKBundlePageResourceLoadClient WKBundlePageResourceLoadClient; 182 188 183 enum { kWKBundlePageResourceLoadClientCurrentVersion = 0};189 enum { kWKBundlePageResourceLoadClientCurrentVersion = 1 }; 184 190 185 191 enum { -
trunk/Source/WebKit2/WebProcess/InjectedBundle/InjectedBundlePageResourceLoadClient.cpp
r95901 r106753 86 86 } 87 87 88 bool InjectedBundlePageResourceLoadClient::shouldCacheResponse(WebPage* page, WebFrame* frame, uint64_t identifier) 89 { 90 if (!m_client.shouldCacheResponse) 91 return true; 92 93 return m_client.shouldCacheResponse(toAPI(page), toAPI(frame), identifier, m_client.clientInfo); 94 } 95 88 96 } // namespace WebKit -
trunk/Source/WebKit2/WebProcess/InjectedBundle/InjectedBundlePageResourceLoadClient.h
r95901 r106753 53 53 void didFinishLoadForResource(WebPage*, WebFrame*, uint64_t identifier); 54 54 void didFailLoadForResource(WebPage*, WebFrame*, uint64_t identifier, const WebCore::ResourceError&); 55 bool shouldCacheResponse(WebPage*, WebFrame*, uint64_t identifier); 55 56 }; 56 57 -
trunk/Source/WebKit2/WebProcess/WebCoreSupport/WebFrameLoaderClient.cpp
r106492 r106753 1417 1417 jobject WebFrameLoaderClient::javaApplet(NSView*) { return 0; } 1418 1418 #endif 1419 1419 1420 NSCachedURLResponse* WebFrameLoaderClient::willCacheResponse(DocumentLoader*, unsigned long identifier, NSCachedURLResponse* response) const 1420 1421 { 1421 return response; 1422 } 1423 1424 #endif 1422 WebPage* webPage = m_frame->page(); 1423 if (!webPage) 1424 return response; 1425 1426 return webPage->injectedBundleResourceLoadClient().shouldCacheResponse(webPage, m_frame, identifier) ? response : nil; 1427 } 1428 1429 #endif // PLATFORM(MAC) 1430 1425 1431 #if PLATFORM(WIN) && USE(CFNETWORK) 1426 1432 bool WebFrameLoaderClient::shouldCacheResponse(DocumentLoader*, unsigned long identifier, const ResourceResponse&, const unsigned char* data, unsigned long long length) 1427 1433 { 1428 return true; 1429 } 1430 1431 #endif 1434 WebPage* webPage = m_frame->page(); 1435 if (!webPage) 1436 return true; 1437 1438 return webPage->injectedBundleResourceLoadClient().shouldCacheResponse(webPage, m_frame, identifier); 1439 } 1440 #endif // PLATFORM(WIN) && USE(CFNETWORK) 1432 1441 1433 1442 bool WebFrameLoaderClient::shouldUsePluginDocument(const String& /*mimeType*/) const -
trunk/Tools/ChangeLog
r106751 r106753 1 2012-02-04 Dan Bernstein <mitz@apple.com> 2 3 <rdar://problem/10660698> Clients cannot prevent caching of individual responses 4 https://bugs.webkit.org/show_bug.cgi?id=77822 5 6 Reviewed by Sam Weinig. 7 8 * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp: 9 (WTR::InjectedBundlePage::InjectedBundlePage): Updated for the additional callback. 10 1 11 2012-02-04 Sam Weinig <sam@webkit.org> 2 12 -
trunk/Tools/WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp
r105465 r106753 228 228 didReceiveContentLengthForResource, 229 229 didFinishLoadForResource, 230 didFailLoadForResource 230 didFailLoadForResource, 231 0, // shouldCacheResponse 231 232 }; 232 233 WKBundlePageSetResourceLoadClient(m_page, &resourceLoadClient);
Note:
See TracChangeset
for help on using the changeset viewer.