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

Side by Side Diff: chrome/browser/resources/options/options.html

Issue 1919183005: Cleanup: Extract icon related methods outside of util.js (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rename favicon.html to icon.html Created 4 years, 7 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
OLDNEW
1 <!doctype html> 1 <!doctype html>
2 <html id="t" i18n-values="dir:textdirection;lang:language"> 2 <html id="t" i18n-values="dir:textdirection;lang:language">
3 <head> 3 <head>
4 <meta charset="utf-8"> 4 <meta charset="utf-8">
5 <title i18n-content="optionsPageTitle"></title> 5 <title i18n-content="optionsPageTitle"></title>
6 <link rel="stylesheet" href="chrome://resources/css/bubble.css"> 6 <link rel="stylesheet" href="chrome://resources/css/bubble.css">
7 <link rel="stylesheet" href="chrome://resources/css/bubble_button.css"> 7 <link rel="stylesheet" href="chrome://resources/css/bubble_button.css">
8 <link rel="stylesheet" href="chrome://resources/css/chrome_shared.css"> 8 <link rel="stylesheet" href="chrome://resources/css/chrome_shared.css">
9 <link rel="stylesheet" href="chrome://resources/css/controlled_indicator.css"> 9 <link rel="stylesheet" href="chrome://resources/css/controlled_indicator.css">
10 <link rel="stylesheet" href="chrome://resources/css/list.css"> 10 <link rel="stylesheet" href="chrome://resources/css/list.css">
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
92 <script src="chrome://resources/js/cr/ui/menu_item.js"></script> 92 <script src="chrome://resources/js/cr/ui/menu_item.js"></script>
93 <script src="chrome://resources/js/cr/ui/menu.js"></script> 93 <script src="chrome://resources/js/cr/ui/menu.js"></script>
94 <script src="chrome://resources/js/cr/ui/autocomplete_list.js"></script> 94 <script src="chrome://resources/js/cr/ui/autocomplete_list.js"></script>
95 <script src="chrome://resources/js/cr/ui/grid.js"></script> 95 <script src="chrome://resources/js/cr/ui/grid.js"></script>
96 <script src="chrome://resources/js/cr/ui/overlay.js"></script> 96 <script src="chrome://resources/js/cr/ui/overlay.js"></script>
97 <script src="chrome://resources/js/cr/ui/position_util.js"></script> 97 <script src="chrome://resources/js/cr/ui/position_util.js"></script>
98 <script src="chrome://resources/js/cr/ui/repeating_button.js"></script> 98 <script src="chrome://resources/js/cr/ui/repeating_button.js"></script>
99 <script src="chrome://resources/js/cr/ui/tree.js"></script> 99 <script src="chrome://resources/js/cr/ui/tree.js"></script>
100 <script src="chrome://resources/js/cr/ui/page_manager/page_manager.js"></script> 100 <script src="chrome://resources/js/cr/ui/page_manager/page_manager.js"></script>
101 <script src="chrome://resources/js/cr/ui/page_manager/page.js"></script> 101 <script src="chrome://resources/js/cr/ui/page_manager/page.js"></script>
102 <script src="chrome://resources/js/icon.js"></script>
102 <script src="chrome://resources/js/load_time_data.js"></script> 103 <script src="chrome://resources/js/load_time_data.js"></script>
103 <script src="chrome://resources/js/parse_html_subset.js"></script> 104 <script src="chrome://resources/js/parse_html_subset.js"></script>
104 <script src="chrome://resources/js/util.js"></script> 105 <script src="chrome://resources/js/util.js"></script>
105 106
106 <script src="chrome://settings-frame/strings.js"></script> 107 <script src="chrome://settings-frame/strings.js"></script>
107 <script src="chrome://settings-frame/options_bundle.js"></script> 108 <script src="chrome://settings-frame/options_bundle.js"></script>
108 </head> 109 </head>
109 110
110 <body> 111 <body>
111 <div id="overlay-container-1" class="overlay transparent" hidden> 112 <div id="overlay-container-1" class="overlay transparent" hidden>
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after
201 <include src="search_page.html"> 202 <include src="search_page.html">
202 <include src="browser_options.html"> 203 <include src="browser_options.html">
203 </div> 204 </div>
204 </div> 205 </div>
205 </div> 206 </div>
206 </div> 207 </div>
207 208
208 <script src="chrome://resources/js/i18n_template.js"></script> 209 <script src="chrome://resources/js/i18n_template.js"></script>
209 </body> 210 </body>
210 </html> 211 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698