| Index: ui/file_manager/externs/progress_center_panel.js
|
| diff --git a/ui/file_manager/externs/progress_center_panel.js b/ui/file_manager/externs/progress_center_panel.js
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..ee111059d7a1ba4f5fe315999c1a2d218dc1d255
|
| --- /dev/null
|
| +++ b/ui/file_manager/externs/progress_center_panel.js
|
| @@ -0,0 +1,25 @@
|
| +// Copyright 2017 The Chromium Authors. All rights reserved.
|
| +// Use of this source code is governed by a BSD-style license that can be
|
| +// found in the LICENSE file.
|
| +
|
| +/**
|
| + * @constructor
|
| + * @struct
|
| + */
|
| +function ProgressCenterPanel() {}
|
| +
|
| +/**
|
| + * @param {string} id
|
| + */
|
| +ProgressCenterPanel.prototype.dismissErrorItem = function(id) {};
|
| +
|
| +/**
|
| + * @param {!ProgressCenterItem} item
|
| + */
|
| +ProgressCenterPanel.prototype.updateItem = function(item) {};
|
| +
|
| +/** @type {?function(string)} */
|
| +ProgressCenterPanel.prototype.cancelCallback;
|
| +
|
| +/** @type {?function(string)} */
|
| +ProgressCenterPanel.prototype.dismissErrorItemCallback;
|
|
|