| 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> | 
|  24   </ol> |  27   </ol> | 
|  25 </div> |  28 </div> | 
|  26  |  29  | 
|  27 <!-- The order of these must match the order of their nav controls. |  30 <!-- The order of these must match the order of their nav controls. | 
|  28      The ID (e.g. "settings") doubles as the display pathname |  31      The ID (e.g. "settings") doubles as the display pathname | 
|  29      (e.g. chrome://chrome/settings). --> |  32      (e.g. chrome://chrome/settings). --> | 
|  30 <div class="iframe-container selected" i18n-values="id:settingsHost"> |  33 <div class="iframe-container selected" i18n-values="id:settingsHost"> | 
|  31   <iframe src="chrome://settings-frame/"></iframe></div> |  34   <iframe src="chrome://settings-frame/"></iframe></div> | 
|  32 <div class="iframe-container" i18n-values="id:extensionsHost"> |  35 <div class="iframe-container" i18n-values="id:extensionsHost"> | 
|  33   <iframe src="chrome://extensions-frame/"></iframe></div> |  36   <iframe src="chrome://extensions-frame/"></iframe></div> | 
|  34  |  37  | 
|  35 </body> |  38 <if expr="pp_ifdef('chromeos')"> | 
 |  39 <div class="iframe-container" i18n-values="id:aboutPageHost"> | 
 |  40   <iframe src="chrome://about-page-frame/"></iframe></div> | 
 |  41 </if> | 
|  36  |  42  | 
|  37 <script src="chrome://chrome/strings.js"></script> |  43 <script src="chrome://chrome/strings.js"></script> | 
|  38 <script src="chrome://resources/js/i18n_template.js"></script> |  44 <script src="chrome://resources/js/i18n_template.js"></script> | 
|  39 <script src="chrome://resources/js/i18n_process.js"></script> |  45 <script src="chrome://resources/js/i18n_process.js"></script> | 
 |  46  | 
 |  47 </body> | 
|  40 </html> |  48 </html> | 
| OLD | NEW |