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

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

Issue 2224163002: Settings Router Refactor: Replace route.subpage usage with route.path (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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
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 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
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}" section="about"> 69 <settings-section page-title="$i18n{aboutPageTitle}" section="about">
70 <settings-animated-pages id="pages" section="about"> 70 <settings-animated-pages id="pages" section="about">
71 <neon-animatable id="main"> 71 <neon-animatable route-path="default">
72 <div class="settings-box"> 72 <div class="settings-box">
73 <img id="product-logo" 73 <img id="product-logo"
74 srcset="chrome://theme/current-channel-logo@1x 1x, 74 srcset="chrome://theme/current-channel-logo@1x 1x,
75 chrome://theme/current-channel-logo@2x 2x" alt=""> 75 chrome://theme/current-channel-logo@2x 2x" alt="">
76 <span class="product-title">$i18n{aboutProductTitle}</span> 76 <span class="product-title">$i18n{aboutProductTitle}</span>
77 </div> 77 </div>
78 <div class="settings-box two-line"> 78 <div class="settings-box two-line">
79 <iron-icon 79 <iron-icon
80 hidden="[[!shouldShowUpdateStatusIcon_( 80 hidden="[[!shouldShowUpdateStatusIcon_(
81 currentUpdateStatusEvent_)]]" 81 currentUpdateStatusEvent_)]]"
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
163 </if> 163 </if>
164 </div> 164 </div>
165 <if expr="chromeos"> 165 <if expr="chromeos">
166 <div class="settings-box product-info" id="regulatoryInfo" 166 <div class="settings-box product-info" id="regulatoryInfo"
167 hidden$="[[!shouldShowRegulatoryInfo_(regulatoryInfo_)]]"> 167 hidden$="[[!shouldShowRegulatoryInfo_(regulatoryInfo_)]]">
168 <img src="[[regulatoryInfo_.url]]" alt="[[regulatoryInfo_.text]]"> 168 <img src="[[regulatoryInfo_.url]]" alt="[[regulatoryInfo_.text]]">
169 </div> 169 </div>
170 </if> 170 </if>
171 </neon-animatable> 171 </neon-animatable>
172 <if expr="chromeos"> 172 <if expr="chromeos">
173 <template is="dom-if" name="detailed-build-info"> 173 <template is="dom-if" route-path="/help/details">
174 <settings-subpage page-title="$i18n{aboutDetailedBuildInfo}"> 174 <settings-subpage page-title="$i18n{aboutDetailedBuildInfo}">
175 <settings-detailed-build-info></settings-detailed-build-info> 175 <settings-detailed-build-info></settings-detailed-build-info>
176 </settings-subpage> 176 </settings-subpage>
177 </template> 177 </template>
178 </if> 178 </if>
179 </settings-animated-pages> 179 </settings-animated-pages>
180 </settings-section> 180 </settings-section>
181 </div> 181 </div>
182 </template> 182 </template>
183 <script src="about_page.js"></script> 183 <script src="about_page.js"></script>
184 </dom-module> 184 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698