Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(7)

Side by Side Diff: tools/memory_inspector/chrome_app/template/manifest.json

Issue 867263002: [memory-inspector] UI fixes + bump version number for release. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | tools/memory_inspector/classification_rules/default/mmap-android.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 { 1 {
2 "name": "Memory Inspector", 2 "name": "Memory Inspector",
3 "description": "Memory inspector tool for Android", 3 "description": "Memory inspector tool for Android",
4 "version": "0.1.0", 4 "version": "0.1.2",
5 "manifest_version": 2, 5 "manifest_version": 2,
6 "icons": { 6 "icons": {
7 "16": "images/icon_16.png", 7 "16": "images/icon_16.png",
8 "48": "images/icon_48.png", 8 "48": "images/icon_48.png",
9 "128": "images/icon_128.png" 9 "128": "images/icon_128.png"
10 }, 10 },
11 "app": { 11 "app": {
12 "background": { 12 "background": {
13 "scripts": [ 13 "scripts": [
14 "background.js" 14 "background.js"
15 ] 15 ]
16 } 16 }
17 }, 17 },
18 "permissions": [ 18 "permissions": [
19 "storage", 19 "storage",
20 "system.storage", 20 "system.storage",
21 "unlimitedStorage", 21 "unlimitedStorage",
22 "fileSystem", 22 "fileSystem",
23 "webview", 23 "webview",
24 { 24 {
25 "socket": [ 25 "socket": [
26 "tcp-listen:*:*", 26 "tcp-listen:*:*",
27 "tcp-connect", 27 "tcp-connect",
28 "resolve-host", 28 "resolve-host",
29 "udp-bind:*:*", 29 "udp-bind:*:*",
30 "udp-send-to:*:*" 30 "udp-send-to:*:*"
31 ] 31 ]
32 }, 32 },
33 "http://127.0.0.1:*/*" 33 "http://127.0.0.1/*"
34 ] 34 ]
35 } 35 }
OLDNEW
« no previous file with comments | « no previous file | tools/memory_inspector/classification_rules/default/mmap-android.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698