| 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 3f6d302eb6ed793bf6cdfce570150b7771f4778f..d65021cece4e8d9e2d4a23f70baf0f9301ee3304 100644
|
| --- a/ui/file_manager/file_manager/common/js/importer_common.js
|
| +++ b/ui/file_manager/file_manager/common/js/importer_common.js
|
| @@ -126,10 +126,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);
|
| });
|
| });
|
| };
|
|
|