OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
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
113
assertEquals(origin1EstimatedSize +
quotaIncrease
, mNewQuota);
120
assertEquals(origin2EstimatedSize +
quotaIncrease
, mNewQuota);
136
assertEquals(origin1Quota +
quotaIncrease
, mNewQuota);
/packages/apps/Browser/src/com/android/browser/
WebStorageSizeManager.java
283
long
quotaIncrease
= estimatedSize == 0 ?
286
newOriginQuota +=
quotaIncrease
;
288
if (
quotaIncrease
> totalUnusedQuota) {
Completed in 45 milliseconds