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

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

Issue 2089543002: MD Settings: remove accidentally left " from sync disconnect dialog (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 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 | no next file » | 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="chrome://resources/html/web_ui_listener_behavior.html"> 2 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html">
3 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani matable.html"> 3 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani matable.html">
4 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt on.html"> 4 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt on.html">
5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-checkbox/paper-ch eckbox.html"> 5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-checkbox/paper-ch eckbox.html">
6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-dialog/paper-dial og.html"> 6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-dialog/paper-dial og.html">
7 <link rel="import" href="/controls/settings_checkbox.html"> 7 <link rel="import" href="/controls/settings_checkbox.html">
8 <link rel="import" href="/people_page/sync_page.html"> 8 <link rel="import" href="/people_page/sync_page.html">
9 <link rel="import" href="/people_page/profile_info_browser_proxy.html"> 9 <link rel="import" href="/people_page/profile_info_browser_proxy.html">
10 <link rel="import" href="/people_page/sync_browser_proxy.html"> 10 <link rel="import" href="/people_page/sync_browser_proxy.html">
(...skipping 233 matching lines...) Expand 10 before | Expand all | Expand 10 after
244 <settings-manage-profile profile-icon-url="[[profileIconUrl_]]" 244 <settings-manage-profile profile-icon-url="[[profileIconUrl_]]"
245 profile-name="[[profileName_]]"> 245 profile-name="[[profileName_]]">
246 </settings-manage-profile> 246 </settings-manage-profile>
247 </settings-subpage> 247 </settings-subpage>
248 </template> 248 </template>
249 </if> 249 </if>
250 </settings-animated-pages> 250 </settings-animated-pages>
251 251
252 <paper-dialog modal id="disconnectDialog"> 252 <paper-dialog modal id="disconnectDialog">
253 <h2>$i18n{syncDisconnectTitle}</h2> 253 <h2>$i18n{syncDisconnectTitle}</h2>
254 <div>$i18nRaw{syncDisconnectExplanation}"</div> 254 <div>$i18nRaw{syncDisconnectExplanation}</div>
255 <if expr="(not chromeos and is_posix) or is_win or is_macosx"> 255 <if expr="(not chromeos and is_posix) or is_win or is_macosx">
256 <paper-checkbox id="deleteProfile"> 256 <paper-checkbox id="deleteProfile">
257 $i18n{syncDisconnectDeleteProfile} 257 $i18n{syncDisconnectDeleteProfile}
258 </paper-checkbox> 258 </paper-checkbox>
259 </if> 259 </if>
260 <div class="button-strip"> 260 <div class="button-strip">
261 <paper-button dialog-dismiss>$i18n{cancel}</paper-button> 261 <paper-button dialog-dismiss>$i18n{cancel}</paper-button>
262 <paper-button dialog-confirm class="action-button" 262 <paper-button dialog-confirm class="action-button"
263 on-tap="onDisconnectConfirm_"> 263 on-tap="onDisconnectConfirm_">
264 $i18n{syncDisconnectConfirm} 264 $i18n{syncDisconnectConfirm}
265 </paper-button> 265 </paper-button>
266 </div> 266 </div>
267 </paper-dialog> 267 </paper-dialog>
268 268
269 <if expr="chromeos"> 269 <if expr="chromeos">
270 <template is="dom-if" if="[[easyUnlockEnabled_]]"> 270 <template is="dom-if" if="[[easyUnlockEnabled_]]">
271 <easy-unlock-turn-off-dialog id="easyUnlockTurnOffDialog"> 271 <easy-unlock-turn-off-dialog id="easyUnlockTurnOffDialog">
272 </easy-unlock-turn-off-dialog> 272 </easy-unlock-turn-off-dialog>
273 </template> 273 </template>
274 </if> 274 </if>
275 </template> 275 </template>
276 <script src="people_page.js"></script> 276 <script src="people_page.js"></script>
277 </dom-module> 277 </dom-module>
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698