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

Unified Diff: chrome/browser/resources/file_manager/js/image_editor/gallery.html

Issue 7828044: [filebrowser] First step to image editor. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Removed commented code. 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/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>

Powered by Google App Engine
This is Rietveld 408576698