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

Side by Side Diff: ui/file_manager/externs/background/volume_manager_factory.js

Issue 2883263002: Stop foreground depending on background in gyp v2 (Closed)
Patch Set: Removed unused TaskQueue and values in media_import_handler. Created 3 years, 7 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 // Copyright 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2017 The Chromium Authors. All rights reserved.
fukino 2017/05/17 10:49:19 nit: You don't have to update the year when moving
oka 2017/05/17 14:39:29 Done.
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 var volumeManagerFactory = {}; 5 var volumeManagerFactory = {};
6 6
7 /** 7 /**
8 * @param {function(VolumeManager)=} opt_callback 8 * @param {function(VolumeManager)=} opt_callback
9 * @return {Promise} 9 * @return {Promise}
10 */ 10 */
11 volumeManagerFactory.getInstance = function(opt_callback) {}; 11 volumeManagerFactory.getInstance = function(opt_callback) {};
12 12
13 /** 13 /**
14 * @return {VolumeManager} 14 * @return {VolumeManager}
15 */ 15 */
16 volumeManagerFactory.getInstanceForDebug = function() {}; 16 volumeManagerFactory.getInstanceForDebug = function() {};
17 17
18 volumeManagerFactory.revokeInstanceForTesting = function() {}; 18 volumeManagerFactory.revokeInstanceForTesting = function() {};
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698