| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2009 The Closure Compiler Authors | 2 * Copyright 2009 The Closure Compiler Authors |
| 3 * | 3 * |
| 4 * Licensed under the Apache License, Version 2.0 (the "License"); | 4 * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 * you may not use this file except in compliance with the License. | 5 * you may not use this file except in compliance with the License. |
| 6 * You may obtain a copy of the License at | 6 * You may obtain a copy of the License at |
| 7 * | 7 * |
| 8 * http://www.apache.org/licenses/LICENSE-2.0 | 8 * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 * | 9 * |
| 10 * Unless required by applicable law or agreed to in writing, software | 10 * Unless required by applicable law or agreed to in writing, software |
| (...skipping 8310 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 8321 * @param {boolean} shared | 8321 * @param {boolean} shared |
| 8322 * @param {!Object} properties | 8322 * @param {!Object} properties |
| 8323 * @param {function(string)} callback Returns guid of the configured | 8323 * @param {function(string)} callback Returns guid of the configured |
| 8324 * configuration. | 8324 * configuration. |
| 8325 */ | 8325 */ |
| 8326 chrome.networkingPrivate.createNetwork = | 8326 chrome.networkingPrivate.createNetwork = |
| 8327 function(shared, properties, callback) {}; | 8327 function(shared, properties, callback) {}; |
| 8328 | 8328 |
| 8329 | 8329 |
| 8330 /** | 8330 /** |
| 8331 * @param {string} guid |
| 8332 * @param {function()=} opt_callback |
| 8333 */ |
| 8334 chrome.networkingPrivate.forgetNetwork = function(guid, opt_callback) {}; |
| 8335 |
| 8336 |
| 8337 /** |
| 8331 * @param {!chrome.networkingPrivate.NetworkFilter} filter | 8338 * @param {!chrome.networkingPrivate.NetworkFilter} filter |
| 8332 * @param {function(!Array.<!Object>)=} opt_callback | 8339 * @param {function(!Array.<!Object>)=} opt_callback |
| 8333 */ | 8340 */ |
| 8334 chrome.networkingPrivate.getNetworks = function(filter, opt_callback) {}; | 8341 chrome.networkingPrivate.getNetworks = function(filter, opt_callback) {}; |
| 8335 | 8342 |
| 8336 | 8343 |
| 8337 /** | 8344 /** |
| 8338 * @param {string} type | 8345 * @param {string} type |
| 8339 * @param {function(!Array.<!Object>)=} opt_callback | 8346 * @param {function(!Array.<!Object>)=} opt_callback |
| 8340 */ | 8347 */ |
| (...skipping 485 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 8826 | 8833 |
| 8827 | 8834 |
| 8828 /** | 8835 /** |
| 8829 * Installs the given app ID. | 8836 * Installs the given app ID. |
| 8830 * @param {string} id | 8837 * @param {string} id |
| 8831 * @param {function(string, string): void=} opt_callback Response callback that | 8838 * @param {function(string, string): void=} opt_callback Response callback that |
| 8832 * returns two string: (1) an error string (or empty string on success) and | 8839 * returns two string: (1) an error string (or empty string on success) and |
| 8833 * (2) an error code in case of error | 8840 * (2) an error code in case of error |
| 8834 */ | 8841 */ |
| 8835 chrome.inlineInstallPrivate.install = function(id, opt_callback) {}; | 8842 chrome.inlineInstallPrivate.install = function(id, opt_callback) {}; |
| OLD | NEW |