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

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

Issue 9583009: [File Manager] Cleanup: Moving js/css/html files to dedicated directories (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 2011->2012 Created 8 years, 10 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_demo.html
diff --git a/chrome/browser/resources/file_manager/js/image_editor/gallery_demo.html b/chrome/browser/resources/file_manager/js/image_editor/gallery_demo.html
deleted file mode 100644
index a71818b0cad90dff63db0ca03fe8e476879fd555..0000000000000000000000000000000000000000
--- a/chrome/browser/resources/file_manager/js/image_editor/gallery_demo.html
+++ /dev/null
@@ -1,70 +0,0 @@
-<!--
- -- 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.
- -->
-<html>
-<head>
- <script type="text/javascript" src="../file_type.js"></script>
- <script type="text/javascript" src="../metadata_provider.js"></script>
- <script type="text/javascript" src="../metrics.js"></script>
- <script type="text/javascript" src="../mock_chrome.js"></script>
- <script type="text/javascript" src="gallery_demo.js"></script>
-
- <style type="text/css">
- body {
- -webkit-user-select: none;
- margin: 0
- }
-
- .gallery-frame {
- width: 100%;
- height: 100%;
- border: none;
- }
-
- .gallery-frame.chromebook {
- width: 1280px;
- height: 700px;
- }
-
- .debug-buttons {
- position: absolute;
- color: white;
- left: 1px;
- top: 1px;
- }
-
- .debug-output {
- position: absolute;
- left: 4px;
- top: 28px;
- text-align: left;
- color: white;
- opacity: 0.3;
- }
-
- .debug-output:hover {
- opacity: 1;
- }
- </style>
-
-</head>
-<body>
- <iframe class="gallery-frame"
- scrolling="no"
- src="gallery.html"
- webkitallowfullscreen
- onload="loadGallery()"/>
- </iframe>
-
- <div class="debug-buttons">
- <input type="checkbox" onchange="toggleSize(this);"/>
- <span>Chromebook size</span>
- <button onclick="loadGallery()">Test grid</button>
- <input type="file" multiple onchange="loadGallery(this.files)"/>
- </div>
-
- <div class="debug-output"></div>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698