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

Side by Side Diff: chrome/common/extensions/api/networking_private.json

Issue 12188027: This adds the onNetworkChanged event to networkingPrivate (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Added missing virtual keyword Created 7 years, 10 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 [ 5 [
6 { 6 {
7 "namespace":"networkingPrivate", 7 "namespace":"networkingPrivate",
8 "compiler_options": { 8 "compiler_options": {
9 "implemented_in": "chrome/browser/chromeos/extensions/networking_private_a pi.h" 9 "implemented_in": "chrome/browser/chromeos/extensions/networking_private_a pi.h"
10 }, 10 },
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
92 }, 92 },
93 { 93 {
94 "name": "callback", 94 "name": "callback",
95 "type": "function", 95 "type": "function",
96 "optional": true, 96 "optional": true,
97 "parameters": [], 97 "parameters": [],
98 "description": "A callback function that indicates that a disconnect has been initiated." 98 "description": "A callback function that indicates that a disconnect has been initiated."
99 } 99 }
100 ] 100 ]
101 } 101 }
102 ],
103 "events": [
104 {
105 "name": "onNetworkChanged",
106 "type": "function",
107 "description": "Fired when the properties change on any of the networks. Only contains the networks that changed, but each item contains all the proper ties for the changed network.",
108 "parameters": [
109 {
110 "name": "changes",
111 "type": "array",
112 "items": { "$ref": "NetworkProperties" }
113 }
114 ]
115 }
102 ] 116 ]
103 } 117 }
104 ] 118 ]
OLDNEW
« no previous file with comments | « chrome/chrome_browser_chromeos.gypi ('k') | chrome/test/data/extensions/api_test/networking/test.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698