| OLD | NEW |
| 1 <link rel="import" href="chrome://resources/html/polymer.html"> | 1 <link rel="import" href="chrome://resources/html/polymer.html"> |
| 2 <link rel="import" href="/about_page/about_page_browser_proxy.html"> | 2 <link rel="import" href="/about_page/about_page_browser_proxy.html"> |
| 3 <link rel="import" href="/i18n_setup.html"> | 3 <link rel="import" href="/i18n_setup.html"> |
| 4 <link rel="import" href="/icons.html"> | 4 <link rel="import" href="/icons.html"> |
| 5 <link rel="import" href="/lifetime_browser_proxy.html"> | 5 <link rel="import" href="/lifetime_browser_proxy.html"> |
| 6 <link rel="import" href="/route.html"> | 6 <link rel="import" href="/route.html"> |
| 7 <link rel="import" href="/settings_page/main_page_behavior.html"> | 7 <link rel="import" href="/settings_page/main_page_behavior.html"> |
| 8 <link rel="import" href="/settings_page/settings_animated_pages.html"> | 8 <link rel="import" href="/settings_page/settings_animated_pages.html"> |
| 9 <link rel="import" href="/settings_page/settings_section.html"> | 9 <link rel="import" href="/settings_page/settings_section.html"> |
| 10 <link rel="import" href="/settings_page_css.html"> | 10 <link rel="import" href="/settings_page_css.html"> |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 58 } | 58 } |
| 59 | 59 |
| 60 .info-section { | 60 .info-section { |
| 61 margin-bottom: 12px; | 61 margin-bottom: 12px; |
| 62 } | 62 } |
| 63 | 63 |
| 64 #regulatoryInfo img { | 64 #regulatoryInfo img { |
| 65 width: 330px; | 65 width: 330px; |
| 66 } | 66 } |
| 67 </style> | 67 </style> |
| 68 <div data-page="about"> | 68 <div> |
| 69 <settings-section page-title="$i18n{aboutPageTitle}" | 69 <settings-section page-title="$i18n{aboutPageTitle}" |
| 70 current-route="[[currentRoute]]" section="about"> | 70 current-route="[[currentRoute]]" section="about"> |
| 71 <settings-animated-pages id="pages" current-route="{{currentRoute}}" | 71 <settings-animated-pages id="pages" current-route="{{currentRoute}}" |
| 72 section="about"> | 72 section="about"> |
| 73 <neon-animatable id="main"> | 73 <neon-animatable id="main"> |
| 74 <div class="settings-box"> | 74 <div class="settings-box"> |
| 75 <img id="product-logo" | 75 <img id="product-logo" |
| 76 srcset="chrome://theme/current-channel-logo@1x 1x, | 76 srcset="chrome://theme/current-channel-logo@1x 1x, |
| 77 chrome://theme/current-channel-logo@2x 2x" alt=""> | 77 chrome://theme/current-channel-logo@2x 2x" alt=""> |
| 78 <span class="product-title">$i18n{aboutProductTitle}</span> | 78 <span class="product-title">$i18n{aboutProductTitle}</span> |
| (...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 176 <settings-detailed-build-info></settings-detailed-build-info> | 176 <settings-detailed-build-info></settings-detailed-build-info> |
| 177 </settings-subpage> | 177 </settings-subpage> |
| 178 </template> | 178 </template> |
| 179 </if> | 179 </if> |
| 180 </settings-animated-pages> | 180 </settings-animated-pages> |
| 181 </settings-section> | 181 </settings-section> |
| 182 </div> | 182 </div> |
| 183 </template> | 183 </template> |
| 184 <script src="about_page.js"></script> | 184 <script src="about_page.js"></script> |
| 185 </dom-module> | 185 </dom-module> |
| OLD | NEW |