| Index: chrome/test/data/extensions/platform_apps/context_menu/manifest.json
 | 
| diff --git a/chrome/test/data/extensions/platform_apps/context_menu/manifest.json b/chrome/test/data/extensions/platform_apps/context_menu/manifest.json
 | 
| index b687136d0954e031844012808ea62def4ed653af..4f62a5d5f78782fbd93db2c6bbbbe44004750b1e 100644
 | 
| --- a/chrome/test/data/extensions/platform_apps/context_menu/manifest.json
 | 
| +++ b/chrome/test/data/extensions/platform_apps/context_menu/manifest.json
 | 
| @@ -1,15 +1,14 @@
 | 
|  {
 | 
|    "name" : "Platform App Context Menus Test Extension",
 | 
| +  "platform_app": true,
 | 
|    "version" : "0.1",
 | 
|    "manifest_version": 2,
 | 
| -  "permissions": [ "contextMenus" ],
 | 
| -  "app": {
 | 
| -    "launch": {
 | 
| -      "local_path": "main.html",
 | 
| -      "container": "shell",
 | 
| -      "width": 250,
 | 
| -      "height": 250
 | 
| -    }
 | 
| -  },
 | 
| -  "platform_app": true
 | 
| +  "permissions": [
 | 
| +    "experimental",
 | 
| +    "windows",
 | 
| +    "contextMenus"
 | 
| +  ],
 | 
| +  "background": {
 | 
| +    "scripts": ["test.js"]
 | 
| +  }
 | 
|  }
 | 
| 
 |