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

Unified Diff: ui/file_manager/zip_archiver/unpacker/js/types.js

Issue 2804453002: Move files from zip_archiver/unpacker/ to zip_archiver/. (Closed)
Patch Set: Move files from zip_archiver/unpacker/ to zip_archiver/. Created 3 years, 8 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
Index: ui/file_manager/zip_archiver/unpacker/js/types.js
diff --git a/ui/file_manager/zip_archiver/unpacker/js/types.js b/ui/file_manager/zip_archiver/unpacker/js/types.js
deleted file mode 100644
index 360cc0d0aa3f7eff0f44f06d007a66f6da2c0296..0000000000000000000000000000000000000000
--- a/ui/file_manager/zip_archiver/unpacker/js/types.js
+++ /dev/null
@@ -1,80 +0,0 @@
-// Copyright 2015 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 custom types.
- * @namespace
- */
-unpacker.types = {};
-
-/** @typedef {string} */
-unpacker.types.FileSystemId;
-
-/** @typedef {number} */
-unpacker.types.RequestId;
-
-/** @typedef {number} */
-unpacker.types.CompressorId;
-
-/** @typedef {number} */
-unpacker.types.EntryId;
-
-/**
- * @see
- * https://developer.chrome.com/apps/fileSystemProvider#event-onUnmountRequested
- * @typedef {!Object<{fileSystemId: !unpacker.types.FileSystemId,
- * requestId: !unpacker.types.RequestId}>}
- */
-unpacker.types.UnmountRequestedOptions;
-
-/**
- * @see
- * https://developer.chrome.com/apps/fileSystemProvider#event-onGetMetadataRequested
- * @typedef {!Object<{fileSystemId: !unpacker.types.FileSystemId,
- * requestId: !unpacker.types.RequestId,
- * entryPath: string,
- * thumbnail: boolean}>}
- */
-unpacker.types.GetMetadataRequestedOptions;
-
-/**
- * @see
- * https://developer.chrome.com/apps/fileSystemProvider#event-onReadDirectoryRequested
- * @typedef {!Object<{fileSystemId: !unpacker.types.FileSystemId,
- * requestId: !unpacker.types.RequestId,
- * directoryPath: string}>}
- */
-unpacker.types.ReadDirectoryRequestedOptions;
-
-/**
- * @see
- * https://developer.chrome.com/apps/fileSystemProvider#event-onOpenFileRequested
- * @typedef {!Object<{fileSystemId: !unpacker.types.FileSystemId,
- * requestId: !unpacker.types.RequestId,
- * filePath: string,
- * mode: !OpenFileMode}>}
- */
-unpacker.types.OpenFileRequestedOptions;
-
-/**
- * @see
- * https://developer.chrome.com/apps/fileSystemProvider#event-onCloseFileRequested
- * @typedef {!Object<{fileSystemId: !unpacker.types.FileSystemId,
- * requestId: !unpacker.types.RequestId,
- * openRequestId: !unpacker.types.RequestId}>}
- */
-unpacker.types.CloseFileRequestedOptions;
-
-/**
- * @see
- * https://developer.chrome.com/apps/fileSystemProvider#event-onReadFileRequested
- * @typedef {!Object<{fileSystemId: !unpacker.types.FileSystemId,
- * requestId: !unpacker.types.RequestId,
- * openRequestId: !unpacker.types.RequestId,
- * offset: number,
- * length: number}>}
- */
-unpacker.types.ReadFileRequestedOptions;
« no previous file with comments | « ui/file_manager/zip_archiver/unpacker/js/request.js ('k') | ui/file_manager/zip_archiver/unpacker/js/unpacker.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698