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

Side by Side Diff: ui/file_manager/gallery/js/slide_mode_unittest.html

Issue 2727353004: Compile Image Editor in gyp v2 (Closed)
Patch Set: . Created 3 years, 9 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
« no previous file with comments | « ui/file_manager/gallery/js/slide_mode.js ('k') | ui/file_manager/gallery/js/thumbnail_mode.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <!-- Copyright 2015 The Chromium Authors. All rights reserved. 2 <!-- Copyright 2015 The Chromium Authors. All rights reserved.
3 -- Use of this source code is governed by a BSD-style license that can be 3 -- Use of this source code is governed by a BSD-style license that can be
4 -- found in the LICENSE file. 4 -- found in the LICENSE file.
5 --> 5 -->
6 6
7 <script> 7 <script>
8 // These variables are referenced in the definition of EDITOR_MODES const 8 // These variables are referenced in the definition of EDITOR_MODES const
9 // variable of slide mode. 9 // variable of slide mode.
10 var ImageEditor = { 10 var ImageEditorMode = {
11 Mode: { 11 InstantAutofix: function() {},
12 InstantAutofix: function() {}, 12 Crop: function() {},
13 Crop: function() {}, 13 Resize: function() {},
14 Resize: function() {}, 14 Exposure: function() {},
15 Exposure: function() {}, 15 OneClick: function() {}
16 OneClick: function() {}
17 }
18 }; 16 };
19 17
20 var Command = { 18 var Command = {
21 Rotate: function() {} 19 Rotate: function() {}
22 }; 20 };
23 </script> 21 </script>
24 <script src="../../../webui/resources/js/assert.js"></script> 22 <script src="../../../webui/resources/js/assert.js"></script>
25 <script src="../../../webui/resources/js/cr.js"></script> 23 <script src="../../../webui/resources/js/cr.js"></script>
26 <script src="../../../webui/resources/js/cr/event_target.js"></script> 24 <script src="../../../webui/resources/js/cr/event_target.js"></script>
27 <script src="../../file_manager/common/js/unittest_util.js"></script> 25 <script src="../../file_manager/common/js/unittest_util.js"></script>
28 <script src="slide_mode.js"></script> 26 <script src="slide_mode.js"></script>
29 27
30 <script src="slide_mode_unittest.js"></script> 28 <script src="slide_mode_unittest.js"></script>
OLDNEW
« no previous file with comments | « ui/file_manager/gallery/js/slide_mode.js ('k') | ui/file_manager/gallery/js/thumbnail_mode.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698