diff options
author | sky@chromium.org <sky@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-02-05 16:01:49 +0000 |
---|---|---|
committer | sky@chromium.org <sky@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-02-05 16:01:49 +0000 |
commit | 3b35564a393a641b95f4fd307d5b1b126b498e5a (patch) | |
tree | df57140fbf8f5dd425f35bbd65a61795f3e0e084 /chrome/test | |
parent | 210e33bb96f415629c4404b8b72199de80f3a33b (diff) | |
download | chromium_src-3b35564a393a641b95f4fd307d5b1b126b498e5a.zip chromium_src-3b35564a393a641b95f4fd307d5b1b126b498e5a.tar.gz chromium_src-3b35564a393a641b95f4fd307d5b1b126b498e5a.tar.bz2 |
Wires TabContents to app extensions.
BUG=32845
TEST=none
Review URL: http://codereview.chromium.org/566032
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@38212 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/test')
-rw-r--r-- | chrome/test/data/extensions/app/manifest.json | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/chrome/test/data/extensions/app/manifest.json b/chrome/test/data/extensions/app/manifest.json new file mode 100644 index 0000000..959e75b --- /dev/null +++ b/chrome/test/data/extensions/app/manifest.json @@ -0,0 +1,15 @@ +{ + "name": "App Test", + "version": "1", + "permissions": [ + "notifications" + ], + "app": { + "extent": [ + "http://www.example.com/empty.html" + ], + "launch": { + "url": "http://www.example.com/empty.html" + } + } +} |