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

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

Issue 7887009: [filebrowser] UI improvements in image editor. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 3 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_adjust.js
===================================================================
--- chrome/browser/resources/file_manager/js/image_editor/image_adjust.js (revision 100892)
+++ chrome/browser/resources/file_manager/js/image_editor/image_adjust.js (working copy)
@@ -325,7 +325,7 @@
ImageEditor.Mode.Blur.prototype =
{__proto__: ImageEditor.Mode.Adjust.prototype};
-ImageEditor.Mode.register(ImageEditor.Mode.Blur);
+// TODO(dgozman): register Mode.Blur in v2.
ImageEditor.Mode.Blur.prototype.createTools = function(toolbar) {
toolbar.addRange('strength', 0, 0, 1, 100);
@@ -343,7 +343,7 @@
ImageEditor.Mode.Sharpen.prototype =
{__proto__: ImageEditor.Mode.Adjust.prototype};
-ImageEditor.Mode.register(ImageEditor.Mode.Sharpen);
+// TODO(dgozman): register Mode.Sharpen in v2.
ImageEditor.Mode.Sharpen.prototype.createTools = function(toolbar) {
toolbar.addRange('strength', 0, 0, 1, 100);

Powered by Google App Engine
This is Rietveld 408576698