summaryrefslogtreecommitdiffstats
path: root/chrome/test
diff options
context:
space:
mode:
authoraa@chromium.org <aa@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-11-17 05:34:36 +0000
committeraa@chromium.org <aa@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-11-17 05:34:36 +0000
commitd978840b3799a139f284c413ffe79b03944afa5e (patch)
tree852096116256af73dcb5fb79c5c8406d3694d6ac /chrome/test
parent61bb694d38cc0d944c5cdd07ed44f6c72868e05e (diff)
downloadchromium_src-d978840b3799a139f284c413ffe79b03944afa5e.zip
chromium_src-d978840b3799a139f284c413ffe79b03944afa5e.tar.gz
chromium_src-d978840b3799a139f284c413ffe79b03944afa5e.tar.bz2
Revert "Implement web app definition parsing."
This reverts commit 24e3962db61243eea4976bead441c6206cd4f21e. TBR=aa@chromium.org git-svn-id: svn://svn.chromium.org/chrome/trunk/src@66394 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/test')
-rw-r--r--chrome/test/data/web_app_info/full.json14
-rw-r--r--chrome/test/data/web_app_info/invalid_icon_url.json8
-rw-r--r--chrome/test/data/web_app_info/invalid_launch_url.json4
-rw-r--r--chrome/test/data/web_app_info/invalid_urls.json9
-rw-r--r--chrome/test/data/web_app_info/minimal.json4
-rw-r--r--chrome/test/data/web_app_info/missing_name.json3
6 files changed, 0 insertions, 42 deletions
diff --git a/chrome/test/data/web_app_info/full.json b/chrome/test/data/web_app_info/full.json
deleted file mode 100644
index ef38f53..0000000
--- a/chrome/test/data/web_app_info/full.json
+++ /dev/null
@@ -1,14 +0,0 @@
-{
- "name": "hello",
- "description": "This app is super awesome",
- "launch_url": "launch_url",
- "launch_container": "panel",
- "permissions": [ "geolocation", "notifications" ],
- "urls": [ "foobar", "baz" ],
- "icons": {
- "ignored": "ignored.png",
- "16": "16.png",
- // We also ignore this because it is larger than 128.
- "500": "500.png"
- }
-}
diff --git a/chrome/test/data/web_app_info/invalid_icon_url.json b/chrome/test/data/web_app_info/invalid_icon_url.json
deleted file mode 100644
index 3389d26..0000000
--- a/chrome/test/data/web_app_info/invalid_icon_url.json
+++ /dev/null
@@ -1,8 +0,0 @@
-{
- "name": "hello",
- "launch_url": "launch_url",
- "icons": {
- "16", "16.png",
- "32": "http://someotherdomain.com/32"
- ]
-}
diff --git a/chrome/test/data/web_app_info/invalid_launch_url.json b/chrome/test/data/web_app_info/invalid_launch_url.json
deleted file mode 100644
index 3c9c81e..0000000
--- a/chrome/test/data/web_app_info/invalid_launch_url.json
+++ /dev/null
@@ -1,4 +0,0 @@
-{
- "name": "hello",
- "launch_url": "http://someotherdomain.com/monkey"
-}
diff --git a/chrome/test/data/web_app_info/invalid_urls.json b/chrome/test/data/web_app_info/invalid_urls.json
deleted file mode 100644
index f347073..0000000
--- a/chrome/test/data/web_app_info/invalid_urls.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "name": "hello",
- "launch_url": "launch_url",
- "urls": [
- "relative",
- "http://example.com/valid_absolute",
- "http://someotherdomain.com/invalid_absolute"
- ]
-}
diff --git a/chrome/test/data/web_app_info/minimal.json b/chrome/test/data/web_app_info/minimal.json
deleted file mode 100644
index e5b6a6a..0000000
--- a/chrome/test/data/web_app_info/minimal.json
+++ /dev/null
@@ -1,4 +0,0 @@
-{
- "name": "hello",
- "launch_url": "launch_url"
-}
diff --git a/chrome/test/data/web_app_info/missing_name.json b/chrome/test/data/web_app_info/missing_name.json
deleted file mode 100644
index d1833e5..0000000
--- a/chrome/test/data/web_app_info/missing_name.json
+++ /dev/null
@@ -1,3 +0,0 @@
-{
- "launch_url": "monkey"
-}