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

Side by Side Diff: chrome/browser/resources/settings/about_page/about_page.html

Issue 2210933004: Settings Router Refactor: Kill settings-router. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix merge Created 4 years, 4 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
« no previous file with comments | « no previous file | chrome/browser/resources/settings/about_page/about_page.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
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> 68 <div>
69 <settings-section page-title="$i18n{aboutPageTitle}" 69 <settings-section page-title="$i18n{aboutPageTitle}" section="about">
70 current-route="[[currentRoute]]" section="about"> 70 <settings-animated-pages id="pages" section="about">
71 <settings-animated-pages id="pages" current-route="{{currentRoute}}"
72 section="about">
73 <neon-animatable id="main"> 71 <neon-animatable id="main">
74 <div class="settings-box"> 72 <div class="settings-box">
75 <img id="product-logo" 73 <img id="product-logo"
76 srcset="chrome://theme/current-channel-logo@1x 1x, 74 srcset="chrome://theme/current-channel-logo@1x 1x,
77 chrome://theme/current-channel-logo@2x 2x" alt=""> 75 chrome://theme/current-channel-logo@2x 2x" alt="">
78 <span class="product-title">$i18n{aboutProductTitle}</span> 76 <span class="product-title">$i18n{aboutProductTitle}</span>
79 </div> 77 </div>
80 <div class="settings-box two-line"> 78 <div class="settings-box two-line">
81 <iron-icon 79 <iron-icon
82 hidden="[[!shouldShowUpdateStatusIcon_( 80 hidden="[[!shouldShowUpdateStatusIcon_(
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after
176 <settings-detailed-build-info></settings-detailed-build-info> 174 <settings-detailed-build-info></settings-detailed-build-info>
177 </settings-subpage> 175 </settings-subpage>
178 </template> 176 </template>
179 </if> 177 </if>
180 </settings-animated-pages> 178 </settings-animated-pages>
181 </settings-section> 179 </settings-section>
182 </div> 180 </div>
183 </template> 181 </template>
184 <script src="about_page.js"></script> 182 <script src="about_page.js"></script>
185 </dom-module> 183 </dom-module>
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/settings/about_page/about_page.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698