Commit 5e2b6fce authored by kinaba@chromium.org's avatar kinaba@chromium.org

Fix code dup in volume_manager_common.js.

BUG=none

Review URL: https://codereview.chromium.org/278553002

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@269479 0039d316-1c4b-4281-b951-d872f2087c98
parent 82ca1533
...@@ -121,119 +121,3 @@ VolumeManagerCommon.VolumeType = Object.freeze({ ...@@ -121,119 +121,3 @@ VolumeManagerCommon.VolumeType = Object.freeze({
CLOUD_DEVICE: 'cloud_device', CLOUD_DEVICE: 'cloud_device',
MTP: 'mtp', MTP: 'mtp',
}); });
// Copyright (c) 2012 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.
'use strict';
/**
* Namespace for common types shared between VolumeManager and
* VolumeManagerWrapper.
*/
var VolumeManagerCommon = {};
/**
* Type of a root directory.
* @enum {string}
* @const
*/
VolumeManagerCommon.RootType = Object.freeze({
// Root for a downloads directory.
DOWNLOADS: 'downloads',
// Root for a mounted archive volume.
ARCHIVE: 'archive',
// Root for a removable volume.
REMOVABLE: 'removable',
// Root for a drive volume.
DRIVE: 'drive',
// Root for a privet storage volume.
CLOUD_DEVICE: 'cloud_device',
// Root for a MTP volume.
MTP: 'mtp',
// Root for entries that is not located under RootType.DRIVE. e.g. shared
// files.
DRIVE_OTHER: 'drive_other',
// Fake root for offline available files on the drive.
DRIVE_OFFLINE: 'drive_offline',
// Fake root for shared files on the drive.
DRIVE_SHARED_WITH_ME: 'drive_shared_with_me',
// Fake root for recent files on the drive.
DRIVE_RECENT: 'drive_recent'
});
/**
* Error type of VolumeManager.
* @enum {string}
* @const
*/
VolumeManagerCommon.VolumeError = Object.freeze({
/* Internal errors */
NOT_MOUNTED: 'not_mounted',
TIMEOUT: 'timeout',
/* System events */
UNKNOWN: 'error_unknown',
INTERNAL: 'error_internal',
UNKNOWN_FILESYSTEM: 'error_unknown_filesystem',
UNSUPPORTED_FILESYSTEM: 'error_unsupported_filesystem',
INVALID_ARCHIVE: 'error_invalid_archive',
AUTHENTICATION: 'error_authentication',
PATH_UNMOUNTED: 'error_path_unmounted'
});
/**
* List of connection types of drive.
*
* Keep this in sync with the kDriveConnectionType* constants in
* private_api_dirve.cc.
*
* @enum {string}
* @const
*/
VolumeManagerCommon.DriveConnectionType = Object.freeze({
OFFLINE: 'offline', // Connection is offline or drive is unavailable.
METERED: 'metered', // Connection is metered. Should limit traffic.
ONLINE: 'online' // Connection is online.
});
/**
* List of reasons of DriveConnectionType.
*
* Keep this in sync with the kDriveConnectionReason constants in
* private_api_drive.cc.
*
* @enum {string}
* @const
*/
VolumeManagerCommon.DriveConnectionReason = Object.freeze({
NOT_READY: 'not_ready', // Drive is not ready or authentication is failed.
NO_NETWORK: 'no_network', // Network connection is unavailable.
NO_SERVICE: 'no_service' // Drive service is unavailable.
});
/**
* The type of each volume.
* @enum {string}
* @const
*/
VolumeManagerCommon.VolumeType = Object.freeze({
DRIVE: 'drive',
DOWNLOADS: 'downloads',
REMOVABLE: 'removable',
ARCHIVE: 'archive',
CLOUD_DEVICE: 'cloud_device'
});
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment