HomeSort by relevance Sort by last modified time
    Searched refs:quotaIncrease (Results 1 - 2 of 2) sorted by null

  /packages/apps/Browser/tests/src/com/android/browser/
WebStorageSizeManagerUnitTests.java 85 final long quotaIncrease = WebStorageSizeManager.QUOTA_INCREASE_STEP; // 1MB
112 assertEquals(origin1EstimatedSize + quotaIncrease, mNewQuota);
119 assertEquals(origin2EstimatedSize + quotaIncrease, mNewQuota);
135 assertEquals(origin1Quota + quotaIncrease, mNewQuota);
  /packages/apps/Browser/src/com/android/browser/
WebStorageSizeManager.java 281 long quotaIncrease = estimatedSize == 0 ?
284 newOriginQuota += quotaIncrease;
286 if (quotaIncrease > totalUnusedQuota) {

Completed in 2594 milliseconds