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

Side by Side Diff: chrome/browser/resources/file_manager/js/photo/source.js

Issue 12257008: [cleanup] Files.app: Remove a doc for non-existing parameter. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 10 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 * The album. 6 * The album.
7 * @param {PhotoSource} source The parent source. 7 * @param {PhotoSource} source The parent source.
8 * @param {string} name The album name. 8 * @param {string} name The album name.
9 * @param {Array.<FileEntry>} entries The entries list.
10 */ 9 */
11 function Album(source, name) { 10 function Album(source, name) {
12 this.source_ = source; 11 this.source_ = source;
13 this.name_ = name; 12 this.name_ = name;
14 this.entries_ = null; 13 this.entries_ = null;
15 } 14 }
16 15
17 Album.prototype = { __proto__: cr.EventTarget.prototype }; 16 Album.prototype = { __proto__: cr.EventTarget.prototype };
18 17
19 /** 18 /**
(...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after
140 ImportPhotoSource.prototype.getType = function() { 139 ImportPhotoSource.prototype.getType = function() {
141 return 'import'; 140 return 'import';
142 }; 141 };
143 142
144 /** 143 /**
145 * @return {Album} The album. 144 * @return {Album} The album.
146 */ 145 */
147 ImportPhotoSource.prototype.getAlbums = function() { 146 ImportPhotoSource.prototype.getAlbums = function() {
148 return this.albums_; 147 return this.albums_;
149 }; 148 };
OLDNEW
« 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