| OLD | NEW |
| 1 <!doctype html> | 1 <!doctype html> |
| 2 <!-- | 2 <!-- |
| 3 ------ | 3 ------ |
| 4 Copyright (c) 2013 The Chromium Authors. All rights reserved. | 4 Copyright (c) 2013 The Chromium Authors. All rights reserved. |
| 5 Use of this source code is governed by a BSD-style license that can be | 5 Use of this source code is governed by a BSD-style license that can be |
| 6 found in the LICENSE file. | 6 found in the LICENSE file. |
| 7 --> | 7 --> |
| 8 <html i18n-values="dir:textdirection;"> | 8 <html i18n-values="dir:textdirection;"> |
| 9 <head> | 9 <head> |
| 10 <meta charset="utf-8"> | 10 <meta charset="utf-8"> |
| 11 <title>Wallpaper Picker</title> | 11 <title>Wallpaper Picker</title> |
| 12 <link rel="stylesheet" href="chrome://resources/css/text_defaults.css"> |
| 12 <link rel="stylesheet" href="../../../../../ui/webui/resources/css/widgets.css
"> | 13 <link rel="stylesheet" href="../../../../../ui/webui/resources/css/widgets.css
"> |
| 13 <link rel="stylesheet" href="../../../../../ui/webui/resources/css/menu.css"><
/link> | 14 <link rel="stylesheet" href="../../../../../ui/webui/resources/css/menu.css"><
/link> |
| 14 | 15 |
| 15 <link rel="stylesheet" href="css/wallpaper_manager.css"> | 16 <link rel="stylesheet" href="css/wallpaper_manager.css"> |
| 16 <script src="js/main_scripts.js"></script> | 17 <script src="js/main_scripts.js"></script> |
| 17 <if expr="False"> | 18 <if expr="False"> |
| 18 <!-- This file has not been flattened, load individual scripts. | 19 <!-- This file has not been flattened, load individual scripts. |
| 19 Keep the list in sync with js/main_scripts.js. --> | 20 Keep the list in sync with js/main_scripts.js. --> |
| 20 <script src="../../../../../ui/webui/resources/js/cr.js"></script> | 21 <script src="../../../../../ui/webui/resources/js/cr.js"></script> |
| 21 <script src="../../../../../ui/webui/resources/js/event_tracker.js"></script
> | 22 <script src="../../../../../ui/webui/resources/js/event_tracker.js"></script
> |
| (...skipping 19 matching lines...) Expand all Loading... |
| 41 | 42 |
| 42 <script src="js/constants.js"></script> | 43 <script src="js/constants.js"></script> |
| 43 <script src="js/util.js"></script> | 44 <script src="js/util.js"></script> |
| 44 <script src="js/progress_manager.js"></script> | 45 <script src="js/progress_manager.js"></script> |
| 45 <script src="js/wallpaper_directories.js"></script> | 46 <script src="js/wallpaper_directories.js"></script> |
| 46 <script src="js/wallpaper_images_grid.js"></script> | 47 <script src="js/wallpaper_images_grid.js"></script> |
| 47 <script src="js/wallpaper_manager.js"></script> | 48 <script src="js/wallpaper_manager.js"></script> |
| 48 <script src="js/main.js"></script> | 49 <script src="js/main.js"></script> |
| 49 </if> | 50 </if> |
| 50 </head> | 51 </head> |
| 51 <body i18n-values=".style.fontFamily:webFontFamily; | 52 <body> |
| 52 .style.fontSize:webFontSize"> | |
| 53 <commands> | 53 <commands> |
| 54 <command id="delete" i18n-values="label:deleteCommandLabel" | 54 <command id="delete" i18n-values="label:deleteCommandLabel" |
| 55 shortcut="U+007F"></command> | 55 shortcut="U+007F"></command> |
| 56 </commands> | 56 </commands> |
| 57 | 57 |
| 58 <menu id="wallpaper-context-menu" class="chrome-menu" visibleif="custom"> | 58 <menu id="wallpaper-context-menu" class="chrome-menu" visibleif="custom"> |
| 59 <menuitem command="#delete"></menuitem> | 59 <menuitem command="#delete"></menuitem> |
| 60 </menu> | 60 </menu> |
| 61 | 61 |
| 62 <div id="error-container" class="overlay-container" hidden> | 62 <div id="error-container" class="overlay-container" hidden> |
| (...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 123 <div id="surprise-me" hidden> | 123 <div id="surprise-me" hidden> |
| 124 <div id="checkbox"></div> | 124 <div id="checkbox"></div> |
| 125 <span i18n-content="surpriseMeLabel"></span> | 125 <span i18n-content="surpriseMeLabel"></span> |
| 126 </div> | 126 </div> |
| 127 </div> | 127 </div> |
| 128 </div> | 128 </div> |
| 129 </div> | 129 </div> |
| 130 </div> | 130 </div> |
| 131 </body> | 131 </body> |
| 132 </html> | 132 </html> |
| OLD | NEW |