* WebView.subproj/WebBaseResourceHandleDelegate.m:
(-[WebBaseResourceHandleDelegate connection:willCacheResponse:]):
Beefed up assertion that's been bugging me and Chris to include
the two troublemaking values.
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@9006
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2005-04-14 John Sullivan <sullivan@apple.com>
+
+ Reviewed by Chris.
+
+ * WebView.subproj/WebBaseResourceHandleDelegate.m:
+ (-[WebBaseResourceHandleDelegate connection:willCacheResponse:]):
+ Beefed up assertion that's been bugging me and Chris to include
+ the two troublemaking values.
+
2005-04-05 David Hyatt <hyatt@apple.com>
Fix for 4077106, wheel scroll amount smaller in Tiger. All along wheeling should have been 4x the default
- (NSCachedURLResponse *)connection:(NSURLConnection *)con willCacheResponse:(NSCachedURLResponse *)cachedResponse
{
- ASSERT(con == connection);
+ ASSERT_WITH_MESSAGE(con == connection, "parameter con (%@) is not equal to instance variable connection (%@)", con, connection);
return [self willCacheResponse:cachedResponse];
}
- (NSCachedURLResponse *)connection:(NSURLConnection *)con willCacheResponse:(NSCachedURLResponse *)cachedResponse
{
- ASSERT(con == connection);
+ ASSERT_WITH_MESSAGE(con == connection, "parameter con (%@) is not equal to instance variable connection (%@)", con, connection);
return [self willCacheResponse:cachedResponse];
}