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

Side by Side Diff: chrome/browser/resources/file_manager/main.html

Issue 7828044: [filebrowser] First step to 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 <!DOCTYPE HTML> 1 <!DOCTYPE HTML>
2 <!-- 2 <!--
3 -- Copyright (c) 2011 The Chromium Authors. All rights reserved. 3 -- Copyright (c) 2011 The Chromium Authors. All rights reserved.
4 -- Use of this source code is governed by a BSD-style license that can be 4 -- Use of this source code is governed by a BSD-style license that can be
5 -- found in the LICENSE file. 5 -- found in the LICENSE file.
6 --> 6 -->
7 <html> 7 <html>
8 <head> 8 <head>
9 <script> 9 <script>
10 // Resources from shared locations are loaded dynamically, so we can 10 // Resources from shared locations are loaded dynamically, so we can
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
66 } 66 }
67 67
68 if (isHarness) 68 if (isHarness)
69 document.write('<script src="js/mock_chrome.js"><\57script>'); 69 document.write('<script src="js/mock_chrome.js"><\57script>');
70 })(); 70 })();
71 71
72 </script> 72 </script>
73 73
74 <link rel="stylesheet" href="css/file_manager.css"></link> 74 <link rel="stylesheet" href="css/file_manager.css"></link>
75 <link rel="stylesheet" href="css/dialogs.css"></link> 75 <link rel="stylesheet" href="css/dialogs.css"></link>
76 <link rel="stylesheet" href="css/gallery.css"></link>
77 <link rel="stylesheet" href="js/image_editor/image_editor.css"></link>
76 78
77 <script src="js/util.js"></script> 79 <script src="js/util.js"></script>
78 <script src="js/file_copy_manager.js"></script> 80 <script src="js/file_copy_manager.js"></script>
79 <script src="js/file_manager.js"></script> 81 <script src="js/file_manager.js"></script>
82 <script src="js/image_editor/image_util.js"></script>
83 <script src="js/image_editor/viewport.js"></script>
84 <script src="js/image_editor/image_buffer.js"></script>
85 <script src="js/image_editor/image_editor.js"></script>
86 <script src="js/image_editor/image_transform.js"></script>
87 <script src="js/image_editor/image_adjust.js"></script>
88 <script src="js/image_editor/filter.js"></script>
89 <script src="js/image_editor/exif_encoder.js"></script>
90 <script src="js/image_editor/image_encoder.js"></script>
91 <script src="js/gallery.js"></script>
80 <script src="js/dialogs.js"></script> 92 <script src="js/dialogs.js"></script>
81 <script src="js/main.js"></script> 93 <script src="js/main.js"></script>
82 94
83 <!-- We have to set some default title, or chrome will use the page 95 <!-- We have to set some default title, or chrome will use the page
84 -- name. As soon as we init and change to a directory, we'll use 96 -- name. As soon as we init and change to a directory, we'll use
85 -- the directory as the page title. Until then, have a unicode glyph 97 -- the directory as the page title. Until then, have a unicode glyph
86 -- of a tape reel. 98 -- of a tape reel.
87 --> 99 -->
88 <title>&#x2707;</title> 100 <title>&#x2707;</title>
89 </head> 101 </head>
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after
174 visibleif='this.dialogType_ == "saveas-file"'> 186 visibleif='this.dialogType_ == "saveas-file"'>
175 <div class=horizontal-spacer></div> 187 <div class=horizontal-spacer></div>
176 <button class=ok disabled tabindex=2>[OK]</button> 188 <button class=ok disabled tabindex=2>[OK]</button>
177 <button class=cancel tabindex=3 i18n-content=CANCEL_LABEL 189 <button class=cancel tabindex=3 i18n-content=CANCEL_LABEL
178 >[CANCEL]</button> 190 >[CANCEL]</button>
179 </div> 191 </div>
180 192
181 <script>init();</script> 193 <script>init();</script>
182 </body> 194 </body>
183 </html> 195 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698