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

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

Issue 10238016: convert history page to loadTimeData (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 8 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 <html i18n-values="dir:textdirection;"> 2 <html i18n-values="dir:textdirection;">
3 <head> 3 <head>
4 <meta charset="utf-8"> 4 <meta charset="utf-8">
5 <title i18n-content="title"></title> 5 <title i18n-content="title"></title>
6 <link rel="icon" href="chrome://theme/IDR_HISTORY_FAVICON"> 6 <link rel="icon" href="chrome://theme/IDR_HISTORY_FAVICON">
7 7
8 <link rel="stylesheet" href="chrome://resources/css/chrome_shared2.css"> 8 <link rel="stylesheet" href="chrome://resources/css/chrome_shared2.css">
9 <link rel="stylesheet" href="chrome://resources/css/menu.css"> 9 <link rel="stylesheet" href="chrome://resources/css/menu.css">
10 <link rel="stylesheet" href="../uber/uber_shared.css"> 10 <link rel="stylesheet" href="../uber/uber_shared.css">
11 <link rel="stylesheet" href="history.css"> 11 <link rel="stylesheet" href="history.css">
12 12
13 <script src="chrome://resources/js/event_tracker.js"></script> 13 <script src="chrome://resources/js/event_tracker.js"></script>
14 <script src="chrome://resources/js/cr.js"></script> 14 <script src="chrome://resources/js/cr.js"></script>
15 <script src="chrome://resources/js/cr/ui.js"></script> 15 <script src="chrome://resources/js/cr/ui.js"></script>
16 <script src="chrome://resources/js/cr/ui/command.js"></script> 16 <script src="chrome://resources/js/cr/ui/command.js"></script>
17 <script src="chrome://resources/js/cr/ui/menu_item.js"></script> 17 <script src="chrome://resources/js/cr/ui/menu_item.js"></script>
18 <script src="chrome://resources/js/cr/ui/menu.js"></script> 18 <script src="chrome://resources/js/cr/ui/menu.js"></script>
19 <script src="chrome://resources/js/cr/ui/position_util.js"></script> 19 <script src="chrome://resources/js/cr/ui/position_util.js"></script>
20 <script src="chrome://resources/js/cr/ui/menu_button.js"></script> 20 <script src="chrome://resources/js/cr/ui/menu_button.js"></script>
21 <script src="chrome://resources/js/local_strings.js"></script> 21 <script src="chrome://resources/js/load_time_data.js"></script>
22 22
23 <script src="chrome://history-frame/history.js"></script> 23 <script src="chrome://history-frame/history.js"></script>
24 <script src="chrome://history-frame/strings.js"></script>
25 24
26 </head> 25 </head>
27 <body class="uber-frame" 26 <body class="uber-frame"
28 i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize"> 27 i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize">
29 <div class="page"> 28 <div class="page">
30 <header> 29 <header>
31 <h1 i18n-content="history"></h1> 30 <h1 i18n-content="history"></h1>
32 <form id="search-form" method="post" action="" 31 <form id="search-form" method="post" action=""
33 class="search-field-container"> 32 class="search-field-container">
34 <input type="search" id="search-field"> 33 <input type="search" id="search-field">
35 <input type="submit" id="search-button" i18n-values="value:searchbutton"> 34 <input type="submit" id="search-button" i18n-values="value:searchbutton">
36 </form> 35 </form>
37 </header> 36 </header>
38 37
39 <div id="editing-controls"> 38 <div id="editing-controls">
40 <button id="clear-browsing-data" i18n-content="clearallhistory"></button> 39 <button id="clear-browsing-data" i18n-content="clearallhistory"></button>
41 <button id="remove-selected" 40 <button id="remove-selected"
42 disabled="disabled" 41 disabled="disabled"
43 i18n-content="removeselected"></button> 42 i18n-content="removeselected"></button>
44 </div> 43 </div>
45 <div id="results-display"></div> 44 <div id="results-display"></div>
46 <div id="results-pagination"></div> 45 <div id="results-pagination"></div>
47 </div> 46 </div>
48 47
49 <menu id="action-menu"> 48 <menu id="action-menu">
50 <button id="more-from-site" i18n-content="moreFromSite"></button> 49 <button id="more-from-site" i18n-content="moreFromSite"></button>
51 <button id="remove-page" i18n-content="removeFromHistory"></button> 50 <button id="remove-page" i18n-content="removeFromHistory"></button>
52 </menu> 51 </menu>
53 52
54 <script src="chrome://resources/js/i18n_template.js"></script> 53 <script src="chrome://history-frame/strings.js"></script>
55 <script src="chrome://resources/js/i18n_process.js"></script> 54 <script src="chrome://resources/js/i18n_template2.js"></script>
56 </body> 55 </body>
57 </html> 56 </html>
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/history/history.js » ('j') | chrome/browser/resources/history/history.js » ('J')

Powered by Google App Engine
This is Rietveld 408576698