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

Side by Side Diff: third_party/closure_compiler/externs/file_manager_private.js

Issue 1023093002: Files.app: Replace job related code in EventRouter with new JobEventRoter class. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Update file_manager_private.js. Created 5 years, 9 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 unified diff | Download patch
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 /** @fileoverview Externs generated from namespace: fileManagerPrivate */ 5 /** @fileoverview Externs generated from namespace: fileManagerPrivate */
6 6
7 /** 7 /**
8 * @typedef {{ 8 * @typedef {{
9 * taskId: string, 9 * taskId: string,
10 * title: string, 10 * title: string,
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
82 * shouldNotify: boolean 82 * shouldNotify: boolean
83 * }} 83 * }}
84 */ 84 */
85 var MountCompletedEvent; 85 var MountCompletedEvent;
86 86
87 /** 87 /**
88 * @typedef {{ 88 * @typedef {{
89 * fileUrl: string, 89 * fileUrl: string,
90 * transferState: string, 90 * transferState: string,
91 * transferType: string, 91 * transferType: string,
92 * processed: (number|undefined), 92 * processed: number,
93 * total: (number|undefined), 93 * total: number,
94 * num_total_jobs: number 94 * num_total_jobs: number
95 * }} 95 * }}
96 */ 96 */
97 var FileTransferStatus; 97 var FileTransferStatus;
98 98
99 /** 99 /**
100 * @typedef {{ 100 * @typedef {{
101 * type: string, 101 * type: string,
102 * fileUrl: string 102 * fileUrl: string
103 * }} 103 * }}
(...skipping 487 matching lines...) Expand 10 before | Expand all | Expand 10 after
591 chrome.fileManagerPrivate.onPreferencesChanged; 591 chrome.fileManagerPrivate.onPreferencesChanged;
592 592
593 /** @type {!ChromeEvent} */ 593 /** @type {!ChromeEvent} */
594 chrome.fileManagerPrivate.onDriveConnectionStatusChanged; 594 chrome.fileManagerPrivate.onDriveConnectionStatusChanged;
595 595
596 /** @type {!ChromeEvent} */ 596 /** @type {!ChromeEvent} */
597 chrome.fileManagerPrivate.onDeviceChanged; 597 chrome.fileManagerPrivate.onDeviceChanged;
598 598
599 /** @type {!ChromeEvent} */ 599 /** @type {!ChromeEvent} */
600 chrome.fileManagerPrivate.onDriveSyncError; 600 chrome.fileManagerPrivate.onDriveSyncError;
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698