| Index: ui/file_manager/file_manager/common/js/importer_common.js
|
| diff --git a/ui/file_manager/file_manager/common/js/importer_common.js b/ui/file_manager/file_manager/common/js/importer_common.js
|
| index 8142d07bba0fa47958e2ee805e02e3304383bfa6..fec6d9dbc4dc2a2a31e92717a510e31d099a0f77 100644
|
| --- a/ui/file_manager/file_manager/common/js/importer_common.js
|
| +++ b/ui/file_manager/file_manager/common/js/importer_common.js
|
| @@ -125,10 +125,10 @@ importer.importEnabled = function() {
|
| return new Promise(
|
| function(resolve, reject) {
|
| chrome.commandLinePrivate.hasSwitch(
|
| - 'enable-cloud-backup',
|
| - /** @param {boolean} enabled */
|
| - function(enabled) {
|
| - resolve(enabled);
|
| + 'disable-cloud-import',
|
| + /** @param {boolean} disabled */
|
| + function(disabled) {
|
| + resolve(!disabled);
|
| });
|
| });
|
| };
|
|
|