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

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: Add to chrome_extensions.js Created 5 years, 9 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 * 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 8291 matching lines...) Expand 10 before | Expand all | Expand 10 after
8302 * @param {boolean} shared 8302 * @param {boolean} shared
8303 * @param {!Object} properties 8303 * @param {!Object} properties
8304 * @param {function(string)} callback Returns guid of the configured 8304 * @param {function(string)} callback Returns guid of the configured
8305 * configuration. 8305 * configuration.
8306 */ 8306 */
8307 chrome.networkingPrivate.createNetwork = 8307 chrome.networkingPrivate.createNetwork =
8308 function(shared, properties, callback) {}; 8308 function(shared, properties, callback) {};
8309 8309
8310 8310
8311 /** 8311 /**
8312 * @param {string} guid
8313 * @param {function()=} opt_callback
8314 */
8315 chrome.networkingPrivate.forgetNetwork = function(guid, opt_callback) {};
8316
8317
8318 /**
8312 * @param {!chrome.networkingPrivate.NetworkFilter} filter 8319 * @param {!chrome.networkingPrivate.NetworkFilter} filter
8313 * @param {function(!Array.<!Object>)=} opt_callback 8320 * @param {function(!Array.<!Object>)=} opt_callback
8314 */ 8321 */
8315 chrome.networkingPrivate.getNetworks = function(filter, opt_callback) {}; 8322 chrome.networkingPrivate.getNetworks = function(filter, opt_callback) {};
8316 8323
8317 8324
8318 /** 8325 /**
8319 * @param {string} type 8326 * @param {string} type
8320 * @param {function(!Array.<!Object>)=} opt_callback 8327 * @param {function(!Array.<!Object>)=} opt_callback
8321 */ 8328 */
(...skipping 476 matching lines...) Expand 10 before | Expand all | Expand 10 after
8798 8805
8799 8806
8800 /** 8807 /**
8801 * Installs the given app ID. 8808 * Installs the given app ID.
8802 * @param {string} id 8809 * @param {string} id
8803 * @param {function(string, string): void=} opt_callback Response callback that 8810 * @param {function(string, string): void=} opt_callback Response callback that
8804 * returns two string: (1) an error string (or empty string on success) and 8811 * returns two string: (1) an error string (or empty string on success) and
8805 * (2) an error code in case of error 8812 * (2) an error code in case of error
8806 */ 8813 */
8807 chrome.inlineInstallPrivate.install = function(id, opt_callback) {}; 8814 chrome.inlineInstallPrivate.install = function(id, opt_callback) {};
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698