diff options
author | asargent@chromium.org <asargent@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-08-13 21:09:21 +0000 |
---|---|---|
committer | asargent@chromium.org <asargent@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-08-13 21:09:21 +0000 |
commit | 03b612f07003a102f1cbba3707a852d4052e8546 (patch) | |
tree | 5dedd3f08c05a221294f1214507b7ec082df7040 /chrome/test/data/extensions | |
parent | 3736392e822eaa314286a387a59cde844e5e2b64 (diff) | |
download | chromium_src-03b612f07003a102f1cbba3707a852d4052e8546.zip chromium_src-03b612f07003a102f1cbba3707a852d4052e8546.tar.gz chromium_src-03b612f07003a102f1cbba3707a852d4052e8546.tar.bz2 |
Rename the extension manifest key "unlimited_storage" to "unlimitedStorage"
But, still accept the old value for backwards compatability.
BUG=51970
TEST=Extensions should get unlimited storage quota for localStorage and web
databases using either "unlimitedStorage" or "unlimited_storage" in their
manifest's permissions key.
Review URL: http://codereview.chromium.org/3109013
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@56090 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/test/data/extensions')
-rw-r--r-- | chrome/test/data/extensions/allow_silent_upgrade/storage_new.json | 2 | ||||
-rw-r--r-- | chrome/test/data/extensions/storage_quota/unlimited_quota/2.0/manifest.json | 6 |
2 files changed, 7 insertions, 1 deletions
diff --git a/chrome/test/data/extensions/allow_silent_upgrade/storage_new.json b/chrome/test/data/extensions/allow_silent_upgrade/storage_new.json index 7a0bb9b..7ecb962 100644 --- a/chrome/test/data/extensions/allow_silent_upgrade/storage_new.json +++ b/chrome/test/data/extensions/allow_silent_upgrade/storage_new.json @@ -2,6 +2,6 @@ "name": "allow silent update", "version": "1.0", "permissions": [ - "unlimited_storage" + "unlimitedStorage" ] } diff --git a/chrome/test/data/extensions/storage_quota/unlimited_quota/2.0/manifest.json b/chrome/test/data/extensions/storage_quota/unlimited_quota/2.0/manifest.json new file mode 100644 index 0000000..641d31c --- /dev/null +++ b/chrome/test/data/extensions/storage_quota/unlimited_quota/2.0/manifest.json @@ -0,0 +1,6 @@ +{ + "name": "Storage_UnlimitedQuota", + "version": "2.0", + "description": "An extension that asks for unlimited storage space.", + "permissions": ["unlimitedStorage"] +} |