Index: chrome/browser/resources/file_manager/js/image_editor/gallery.html |
=================================================================== |
--- chrome/browser/resources/file_manager/js/image_editor/gallery.html (revision 0) |
+++ chrome/browser/resources/file_manager/js/image_editor/gallery.html (revision 0) |
@@ -0,0 +1,33 @@ |
+<!-- |
+ -- Copyright (c) 2011 The Chromium Authors. All rights reserved. |
+ -- Use of this source code is governed by a BSD-style license that can be |
+ -- found in the LICENSE file. |
+ --> |
+ |
+<!-- |
+ Load this page into a tab or an iframe, then set the gallery up like this: |
+ |
+ iframe.contentWindow.Gallery.open(parentDirEntry, entries, closeCallback); |
+ --> |
+<html> |
+<head> |
+ <link rel="stylesheet" type="text/css" href="image_editor.css"/> |
+ <link rel="stylesheet" type="text/css" href="gallery.css"/> |
+ |
+ <script type="text/javascript" src="image_util.js"></script> |
+ <script type="text/javascript" src="viewport.js"></script> |
+ <script type="text/javascript" src="image_buffer.js"></script> |
+ <script type="text/javascript" src="image_editor.js"></script> |
+ <script type="text/javascript" src="image_transform.js"></script> |
+ <script type="text/javascript" src="image_adjust.js"></script> |
+ <script type="text/javascript" src="filter.js"></script> |
+ <script type="text/javascript" src="gallery.js"></script> |
+ |
+ <script type="text/javascript" src="image_encoder.js"></script> |
+ <script type="text/javascript" src="exif_encoder.js"></script> |
+ |
+</head> |
+<body> |
+ <div class="gallery"></div> |
+</body> |
+</html> |