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

Unified Diff: chrome/browser/resources/file_manager/js/image_editor/commands.js

Issue 12262006: [Cleanup] Files.app: Add '@constructor' annotates to constructors. (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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | chrome/browser/resources/file_manager/js/image_editor/image_editor.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/file_manager/js/image_editor/commands.js
diff --git a/chrome/browser/resources/file_manager/js/image_editor/commands.js b/chrome/browser/resources/file_manager/js/image_editor/commands.js
index 022701248b473fc89b2c7d29a4add7dcfc5b35fe..438b04fe19395bfb37d13246cb9de04c485ffbfc 100644
--- a/chrome/browser/resources/file_manager/js/image_editor/commands.js
+++ b/chrome/browser/resources/file_manager/js/image_editor/commands.js
@@ -7,6 +7,7 @@
* Supports undo/redo.
* Command execution is asynchronous (callback-based).
*
+ * @constructor
* @param {Document} document Document to create canvases in.
* @param {HTMLCanvasElement} canvas The canvas with the original image.
* @param {function(callback)} saveFunction Function to save the image.
@@ -217,6 +218,7 @@ CommandQueue.prototype.redo = function() {
* Command object encapsulates an operation on an image and a way to visualize
* its result.
*
+ * @constructor
* @param {string} name Command name.
*/
function Command(name) {
« no previous file with comments | « no previous file | chrome/browser/resources/file_manager/js/image_editor/image_editor.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698