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

Unified Diff: chrome/browser/resources/file_manager/js/image_editor/image_view.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
Index: chrome/browser/resources/file_manager/js/image_editor/image_view.js
diff --git a/chrome/browser/resources/file_manager/js/image_editor/image_view.js b/chrome/browser/resources/file_manager/js/image_editor/image_view.js
index e6fd35684636197b0989f3daf49281cc27f5844d..8abe57da9ca415a9561287398b299108e0d1cc02 100644
--- a/chrome/browser/resources/file_manager/js/image_editor/image_view.js
+++ b/chrome/browser/resources/file_manager/js/image_editor/image_view.js
@@ -4,6 +4,7 @@
/**
* The overlay displaying the image.
+ * @constructor
* @param {HTMLElement} container The container element.
* @param {Viewport} viewport The viewport.
* @param {MetadataCache} metadataCache The metadataCache.
@@ -769,6 +770,7 @@ ImageView.prototype.animateAndReplace = function(canvas, imageCropRect) {
/**
* Generic cache with a limited capacity and LRU eviction.
*
+ * @constructor
* @param {number} capacity Maximum number of cached item.
*/
ImageView.Cache = function(capacity) {

Powered by Google App Engine
This is Rietveld 408576698