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

Side by Side Diff: third_party/closure_compiler/externs/chrome_extensions.js

Issue 987963002: Add forgetNetwork to networkingPrivate (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 5 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
« no previous file with comments | « extensions/common/api/networking_private.json ('k') | tools/metrics/histograms/histograms.xml » ('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 * 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
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) {};
Dan Beam 2015/03/25 23:02:30 this is a generated file, changes to it will be lo
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
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) {};
OLDNEW
« no previous file with comments | « extensions/common/api/networking_private.json ('k') | tools/metrics/histograms/histograms.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698