Chromium Code Reviews| OLD | NEW |
|---|---|
| 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() {}; |
| OLD | NEW |