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

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

Issue 1872223002: Add verbs API to file handlers. Modify the Chrome OS UI so that it displayes the internationalized … (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Move back to "open-with" for the id of the more actions dialog, as it breaks some browsers tests, a… Created 4 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 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 664 matching lines...) Expand 10 before | Expand all | Expand 10 after
675 chrome.fileManagerPrivate.onPreferencesChanged; 675 chrome.fileManagerPrivate.onPreferencesChanged;
676 676
677 /** @type {!ChromeEvent} */ 677 /** @type {!ChromeEvent} */
678 chrome.fileManagerPrivate.onDriveConnectionStatusChanged; 678 chrome.fileManagerPrivate.onDriveConnectionStatusChanged;
679 679
680 /** @type {!ChromeEvent} */ 680 /** @type {!ChromeEvent} */
681 chrome.fileManagerPrivate.onDeviceChanged; 681 chrome.fileManagerPrivate.onDeviceChanged;
682 682
683 /** @type {!ChromeEvent} */ 683 /** @type {!ChromeEvent} */
684 chrome.fileManagerPrivate.onDriveSyncError; 684 chrome.fileManagerPrivate.onDriveSyncError;
685
686 /** @enum {string} */
687 chrome.fileManagerPrivate.Verb = {
688 OPEN_WITH: 'open_with',
689 ADD_TO: 'add_to',
690 PACK_WITH: 'pack_with',
691 SHARE_WITH: 'share_with',
692 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698