| OLD | NEW |
| 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="pageTitle"></title> | 5 <title i18n-content="pageTitle"></title> |
| 6 | 6 |
| 7 <link rel="stylesheet" href="chrome://resources/css/chrome_shared2.css"> | 7 <link rel="stylesheet" href="chrome://resources/css/chrome_shared2.css"> |
| 8 <link rel="stylesheet" href="chrome://resources/css/open_sans.css"> | 8 <link rel="stylesheet" href="chrome://resources/css/open_sans.css"> |
| 9 <link rel="stylesheet" href="uber.css"> | 9 <link rel="stylesheet" href="uber.css"> |
| 10 | 10 |
| 11 <script src="chrome://resources/js/cr.js"></script> | 11 <script src="chrome://resources/js/cr.js"></script> |
| 12 <script src="chrome://resources/js/util.js"></script> | 12 <script src="chrome://resources/js/util.js"></script> |
| 13 | 13 |
| 14 <script src="chrome://chrome/uber.js"></script> | 14 <script src="chrome://chrome/uber.js"></script> |
| 15 </head> | 15 </head> |
| 16 | 16 |
| 17 <body> | 17 <body> |
| 18 | 18 |
| 19 <div id="navigation"> | 19 <div id="navigation"> |
| 20 <h3 i18n-content="shortProductName"></h3> | 20 <h3 i18n-content="shortProductName"></h3> |
| 21 <ol> | 21 <ol> |
| 22 <li class="selected" i18n-content="settingsDisplayName"></li> | 22 <li class="selected" i18n-content="settingsDisplayName"></li> |
| 23 <li i18n-content="extensionsDisplayName"></li> | 23 <li i18n-content="extensionsDisplayName"></li> |
| 24 <if expr="pp_ifdef('chromeos')"> | |
| 25 <li i18n-content="aboutPageDisplayName" id="aboutPageNavItem"></li> | |
| 26 </if> | |
| 27 </ol> | 24 </ol> |
| 28 </div> | 25 </div> |
| 29 | 26 |
| 30 <!-- The order of these must match the order of their nav controls. | 27 <!-- The order of these must match the order of their nav controls. |
| 31 The ID (e.g. "settings") doubles as the display pathname | 28 The ID (e.g. "settings") doubles as the display pathname |
| 32 (e.g. chrome://chrome/settings). --> | 29 (e.g. chrome://chrome/settings). --> |
| 33 <div class="iframe-container selected" i18n-values="id:settingsHost"> | 30 <div class="iframe-container selected" i18n-values="id:settingsHost"> |
| 34 <iframe src="chrome://settings-frame/"></iframe></div> | 31 <iframe src="chrome://settings-frame/"></iframe></div> |
| 35 <div class="iframe-container" i18n-values="id:extensionsHost"> | 32 <div class="iframe-container" i18n-values="id:extensionsHost"> |
| 36 <iframe src="chrome://extensions-frame/"></iframe></div> | 33 <iframe src="chrome://extensions-frame/"></iframe></div> |
| 37 | 34 |
| 38 <if expr="pp_ifdef('chromeos')"> | 35 </body> |
| 39 <div class="iframe-container" i18n-values="id:aboutPageHost"> | |
| 40 <iframe src="chrome://about-page-frame/"></iframe></div> | |
| 41 </if> | |
| 42 | 36 |
| 43 <script src="chrome://chrome/strings.js"></script> | 37 <script src="chrome://chrome/strings.js"></script> |
| 44 <script src="chrome://resources/js/i18n_template.js"></script> | 38 <script src="chrome://resources/js/i18n_template.js"></script> |
| 45 <script src="chrome://resources/js/i18n_process.js"></script> | 39 <script src="chrome://resources/js/i18n_process.js"></script> |
| 46 | |
| 47 </body> | |
| 48 </html> | 40 </html> |
| OLD | NEW |