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

Side by Side Diff: chrome/browser/resources/hangout_services/manifest.json

Issue 2784563003: WebRTC Audio private API: removing WebRtcAudioPrivate(Set/Get)ActiveSinkFunction (Closed)
Patch Set: updated api version Created 3 years, 8 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
OLDNEW
1 { 1 {
2 // Extension ID: nkeimhogjdpnpccoofpliimaahmaaome 2 // Extension ID: nkeimhogjdpnpccoofpliimaahmaaome
3 "key": "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDAQt2ZDdPfoSe/JI6ID5bgLHRCnCu9T3 6aYczmhw/tnv6QZB2I6WnOCMZXJZlRdqWc7w9jo4BWhYS50Vb4weMfh/I0On7VcRwJUgfAxW2cHB+Ekm tI1v4v/OU24OqIa1Nmv9uRVeX0GjhQukdLNhAE6ACWooaf5kqKlCeK+1GOkQIDAQAB", 3 "key": "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDAQt2ZDdPfoSe/JI6ID5bgLHRCnCu9T3 6aYczmhw/tnv6QZB2I6WnOCMZXJZlRdqWc7w9jo4BWhYS50Vb4weMfh/I0On7VcRwJUgfAxW2cHB+Ekm tI1v4v/OU24OqIa1Nmv9uRVeX0GjhQukdLNhAE6ACWooaf5kqKlCeK+1GOkQIDAQAB",
4 4
5 "name": "Google Hangouts", 5 "name": "Google Hangouts",
6 // Note: Always update the version number when this file is updated. Chrome 6 // Note: Always update the version number when this file is updated. Chrome
7 // triggers extension preferences update on the version increase. 7 // triggers extension preferences update on the version increase.
8 "version": "1.3.3", 8 "version": "1.3.4",
9 "manifest_version": 2, 9 "manifest_version": 2,
10 "externally_connectable": { 10 "externally_connectable": {
11 "matches": [ 11 "matches": [
12 "https://*.google.com/*", 12 "https://*.google.com/*",
13 // For tests. 13 // For tests.
14 "*://localhost/*" 14 "*://localhost/*"
15 ] 15 ]
16 }, 16 },
17 "background": { 17 "background": {
18 "page": "background.html", 18 "page": "background.html",
19 "persistent": false 19 "persistent": false
20 }, 20 },
21 "incognito": "split", 21 "incognito": "split",
22 "permissions": [ 22 "permissions": [
23 "desktopCapture", 23 "desktopCapture",
24 "processes", 24 "processes",
25 "system.cpu", 25 "system.cpu",
26 "webrtcAudioPrivate", 26 "webrtcAudioPrivate",
27 "webrtcDesktopCapturePrivate", 27 "webrtcDesktopCapturePrivate",
28 "webrtcLoggingPrivate" 28 "webrtcLoggingPrivate"
29 ] 29 ]
30 } 30 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698