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

Side by Side Diff: ui/file_manager/externs/entry_location.js

Issue 2839863002: Add Team Drive subtree to the directory list view. (Closed)
Patch Set: Remove some unncecesary code Created 3 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 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 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 /** 5 /**
6 * Location information which shows where the path points in FileManager's 6 * Location information which shows where the path points in FileManager's
7 * file system. 7 * file system.
8 * @interface 8 * @interface
9 */ 9 */
10 function EntryLocation() {}; 10 function EntryLocation() {};
(...skipping 28 matching lines...) Expand all
39 * represents a special search from Google Drive. 39 * represents a special search from Google Drive.
40 * @type {boolean} 40 * @type {boolean}
41 */ 41 */
42 EntryLocation.prototype.isDriveBased; 42 EntryLocation.prototype.isDriveBased;
43 43
44 /** 44 /**
45 * Whether the entry is read only or not. 45 * Whether the entry is read only or not.
46 * @type {boolean} 46 * @type {boolean}
47 */ 47 */
48 EntryLocation.prototype.isReadOnly; 48 EntryLocation.prototype.isReadOnly;
49
50 /**
51 * Whether the entry should be displayed with a fixed name instead of individual
52 * entry's name. (e.g. "Downloads" is a fixed name)
53 * @type {boolean}
54 */
55 EntryLocation.prototype.hasFixedLabel;
OLDNEW
« no previous file with comments | « chrome/browser/chromeos/extensions/file_manager/private_api_strings.cc ('k') | ui/file_manager/externs/volume_info.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698