Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(381)

Unified Diff: ui/file_manager/file_manager/common/js/volume_manager_common.js

Issue 278553002: Fix code dup in volume_manager_common.js. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/file_manager/file_manager/common/js/volume_manager_common.js
diff --git a/ui/file_manager/file_manager/common/js/volume_manager_common.js b/ui/file_manager/file_manager/common/js/volume_manager_common.js
index 255f5548b587da93ff11f26f8e4699dda5e8f8e7..b4833559c8fd5422c739526c03eb6946877bbdb0 100644
--- a/ui/file_manager/file_manager/common/js/volume_manager_common.js
+++ b/ui/file_manager/file_manager/common/js/volume_manager_common.js
@@ -110,119 +110,3 @@ VolumeManagerCommon.VolumeType = Object.freeze({
ARCHIVE: 'archive',
CLOUD_DEVICE: 'cloud_device'
});
-
-
-// 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'
-});
-
-
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698