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

Side by Side Diff: chrome/browser/resources/chromeos/wallpaper_manager/main.html

Issue 11962043: Move webui resources from chrome\browser\resources\shared to ui\webui\resources. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 7 years, 11 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 ------ 3 ------
4 Copyright (c) 2012 The Chromium Authors. All rights reserved. 4 Copyright (c) 2012 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 <title>Wallpaper Picker</title> 10 <title>Wallpaper Picker</title>
11 <link rel="stylesheet" href="../../shared/css/widgets.css"> 11 <link rel="stylesheet" href="../../../../../ui/webui/resources/css/widgets.css ">
12 <link rel="stylesheet" href="css/wallpaper_manager.css"> 12 <link rel="stylesheet" href="css/wallpaper_manager.css">
13 <script src="js/main_scripts.js"></script> 13 <script src="js/main_scripts.js"></script>
14 <if expr="0"> 14 <if expr="0">
15 <!-- This file has not been flattened, load individual scripts. 15 <!-- This file has not been flattened, load individual scripts.
16 Keep the list in sync with js/main_scripts.js. --> 16 Keep the list in sync with js/main_scripts.js. -->
17 <script src="../../shared/js/cr.js"></script> 17 <script src="../../../../../ui/webui/resources/js/cr.js"></script>
18 <script src="../../shared/js/event_tracker.js"></script> 18 <script src="../../../../../ui/webui/resources/js/event_tracker.js"></script >
19 <script src="../../shared/js/load_time_data.js"></script> 19 <script src="../../../../../ui/webui/resources/js/load_time_data.js"></scrip t>
20 <script src="../../shared/js/i18n_template_no_process.js"></script> 20 <script src="../../../../../ui/webui/resources/js/i18n_template_no_process.j s"></script>
21 <script src="../../shared/js/util.js"></script> 21 <script src="../../../../../ui/webui/resources/js/util.js"></script>
22 <script src="../../shared/js/cr/ui.js"></script> 22 <script src="../../../../../ui/webui/resources/js/cr/ui.js"></script>
23 <script src="../../shared/js/cr/event_target.js"></script> 23 <script src="../../../../../ui/webui/resources/js/cr/event_target.js"></scri pt>
24 <script src="../../shared/js/cr/ui/touch_handler.js"></script> 24 <script src="../../../../../ui/webui/resources/js/cr/ui/touch_handler.js"></ script>
25 <script src="../../shared/js/cr/ui/array_data_model.js"></script> 25 <script src="../../../../../ui/webui/resources/js/cr/ui/array_data_model.js" ></script>
26 <script src="../../shared/js/cr/ui/list_item.js"></script> 26 <script src="../../../../../ui/webui/resources/js/cr/ui/list_item.js"></scri pt>
27 <script src="../../shared/js/cr/ui/list_selection_model.js"></script> 27 <script src="../../../../../ui/webui/resources/js/cr/ui/list_selection_model .js"></script>
28 <script src="../../shared/js/cr/ui/list_single_selection_model.js"></script> 28 <script src="../../../../../ui/webui/resources/js/cr/ui/list_single_selectio n_model.js"></script>
29 <script src="../../shared/js/cr/ui/list_selection_controller.js"></script> 29 <script src="../../../../../ui/webui/resources/js/cr/ui/list_selection_contr oller.js"></script>
30 <script src="../../shared/js/cr/ui/list.js"></script> 30 <script src="../../../../../ui/webui/resources/js/cr/ui/list.js"></script>
31 <script src="../../shared/js/cr/ui/grid.js"></script> 31 <script src="../../../../../ui/webui/resources/js/cr/ui/grid.js"></script>
32 <script src="js/butter_bar.js"></script> 32 <script src="js/butter_bar.js"></script>
33 <script src="js/wallpaper_images_grid.js"></script> 33 <script src="js/wallpaper_images_grid.js"></script>
34 <script src="js/wallpaper_manager.js"></script> 34 <script src="js/wallpaper_manager.js"></script>
35 <script src="js/main.js"></script> 35 <script src="js/main.js"></script>
36 </if> 36 </if>
37 </head> 37 </head>
38 <body i18n-values=".style.fontFamily:webFontFamily; 38 <body i18n-values=".style.fontFamily:webFontFamily;
39 .style.fontSize:webFontSize"> 39 .style.fontSize:webFontSize">
40 <div class="dialog-container"> 40 <div class="dialog-container">
41 <div class="dialog-topbar"> 41 <div class="dialog-topbar">
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
84 </div> 84 </div>
85 <div class="progress-bar" hidden> 85 <div class="progress-bar" hidden>
86 <div class="progress-track"></div> 86 <div class="progress-track"></div>
87 </div> 87 </div>
88 </div> 88 </div>
89 <div class="actions" hidden></div> 89 <div class="actions" hidden></div>
90 </div> 90 </div>
91 </div> 91 </div>
92 </body> 92 </body>
93 </html> 93 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698