Changeset 64802 in webkit


Ignore:
Timestamp:
Aug 5, 2010 5:24:48 PM (14 years ago)
Author:
Joseph Pecoraro
Message:

2010-08-05 Joseph Pecoraro <Joseph Pecoraro>

Reviewed by David Kilzer.

Remove Invalid Asserts for Application Cache Quotas
https://bugs.webkit.org/show_bug.cgi?id=43585

Removed Invalid ASSERTs that would always happen for quotas
that were not noQuota().

  • WebView/WebPreferences.mm: (-[WebPreferences applicationCacheTotalQuota]): (-[WebPreferences applicationCacheDefaultOriginQuota]):
Location:
trunk/WebKit/mac
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKit/mac/ChangeLog

    r64801 r64802  
     12010-08-05  Joseph Pecoraro  <joepeck@webkit.org>
     2
     3        Reviewed by David Kilzer.
     4
     5        Remove Invalid Asserts for Application Cache Quotas
     6        https://bugs.webkit.org/show_bug.cgi?id=43585
     7
     8        Removed Invalid ASSERTs that would always happen for quotas
     9        that were not noQuota().
     10
     11        * WebView/WebPreferences.mm:
     12        (-[WebPreferences applicationCacheTotalQuota]):
     13        (-[WebPreferences applicationCacheDefaultOriginQuota]):
     14
    1152010-08-05  Gavin Barraclough  <barraclough@apple.com>
    216
  • trunk/WebKit/mac/WebView/WebPreferences.mm

    r64397 r64802  
    999999- (int64_t)applicationCacheTotalQuota
    10001000{
    1001     ASSERT([self _longLongValueForKey:WebKitApplicationCacheTotalQuota] == [WebApplicationCache maximumSize]);
    10021001    return [self _longLongValueForKey:WebKitApplicationCacheTotalQuota];
    10031002}
     
    10131012- (int64_t)applicationCacheDefaultOriginQuota
    10141013{
    1015     ASSERT([self _longLongValueForKey:WebKitApplicationCacheDefaultOriginQuota] == [WebApplicationCache defaultOriginQuota]);
    10161014    return [self _longLongValueForKey:WebKitApplicationCacheDefaultOriginQuota];
    10171015}
Note: See TracChangeset for help on using the changeset viewer.