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

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

Issue 2825493003: MD Settings: change outlinks to actually use <a> (Closed)
Patch Set: replace more, add target blank Created 3 years, 8 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="chrome://resources/cr_elements/cr_dialog/cr_dialog.html "> 2 <link rel="import" href="chrome://resources/cr_elements/cr_dialog/cr_dialog.html ">
3 <link rel="import" href="chrome://resources/cr_elements/policy/cr_policy_vars_cs s.html"> 3 <link rel="import" href="chrome://resources/cr_elements/policy/cr_policy_vars_cs s.html">
4 <link rel="import" href="chrome://resources/html/i18n_behavior.html"> 4 <link rel="import" href="chrome://resources/html/i18n_behavior.html">
5 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html"> 5 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html">
6 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/iron-f lex-layout-classes.html"> 6 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/iron-f lex-layout-classes.html">
7 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani matable.html"> 7 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani matable.html">
8 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt on.html"> 8 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt on.html">
9 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper -icon-button-light.html"> 9 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper -icon-button-light.html">
10 <link rel="import" href="../clear_browsing_data_dialog/clear_browsing_data_dialo g.html"> 10 <link rel="import" href="../clear_browsing_data_dialog/clear_browsing_data_dialo g.html">
(...skipping 360 matching lines...) Expand 10 before | Expand all | Expand 10 after
371 </template> 371 </template>
372 <template is="dom-if" route-path="/content/flash" no-search> 372 <template is="dom-if" route-path="/content/flash" no-search>
373 <settings-subpage page-title="$i18n{siteSettingsFlash}"> 373 <settings-subpage page-title="$i18n{siteSettingsFlash}">
374 <category-default-setting category="{{ContentSettingsTypes.PLUGINS}}" 374 <category-default-setting category="{{ContentSettingsTypes.PLUGINS}}"
375 toggle-off-label="$i18n{siteSettingsFlashBlock}" 375 toggle-off-label="$i18n{siteSettingsFlashBlock}"
376 toggle-on-label="$i18n{siteSettingsFlashAllow}" 376 toggle-on-label="$i18n{siteSettingsFlashAllow}"
377 sub-option-label="$i18n{siteSettingsFlashAskBefore}" 377 sub-option-label="$i18n{siteSettingsFlashAskBefore}"
378 sub-option-secondary="$i18n{siteSettingsFlashAskBeforeSubtitle}"> 378 sub-option-secondary="$i18n{siteSettingsFlashAskBeforeSubtitle}">
379 </category-default-setting> 379 </category-default-setting>
380 <if expr="chromeos"> 380 <if expr="chromeos">
381 <div actionable class="settings-box" 381 <a actionable class="settings-box" tabindex="-1" target="_blank"
382 on-tap="onAdobeFlashStorageClicked_"> 382 href="https://www.macromedia.com/support/documentation/en/flashpla yer/help/settings_manager07.html">
scottchen 2017/04/18 19:12:49 not sure what to do about 80-col here.
383 <div class="start">$i18n{adobeFlashStorage}</div> 383 <div class="start">$i18n{adobeFlashStorage}</div>
384 <button class="icon-external" is="paper-icon-button-light" 384 <button class="icon-external" is="paper-icon-button-light"
385 aria-label="$i18n{adobeFlashStorage}"></button> 385 aria-label="$i18n{adobeFlashStorage}"></button>
386 </div> 386 </a>
387 </if> 387 </if>
388 <category-setting-exceptions 388 <category-setting-exceptions
389 category="{{ContentSettingsTypes.PLUGINS}}"> 389 category="{{ContentSettingsTypes.PLUGINS}}">
390 </category-setting-exceptions> 390 </category-setting-exceptions>
391 </settings-subpage> 391 </settings-subpage>
392 </template> 392 </template>
393 <template is="dom-if" route-path="/content/popups" no-search> 393 <template is="dom-if" route-path="/content/popups" no-search>
394 <settings-subpage page-title="$i18n{siteSettingsCategoryPopups}"> 394 <settings-subpage page-title="$i18n{siteSettingsCategoryPopups}">
395 <category-default-setting category="{{ContentSettingsTypes.POPUPS}}" 395 <category-default-setting category="{{ContentSettingsTypes.POPUPS}}"
396 toggle-off-label="$i18n{siteSettingsBlockedRecommended}" 396 toggle-off-label="$i18n{siteSettingsBlockedRecommended}"
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after
490 category="{{ContentSettingsTypes.PROTECTED_CONTENT}}"> 490 category="{{ContentSettingsTypes.PROTECTED_CONTENT}}">
491 </category-setting-exceptions> 491 </category-setting-exceptions>
492 </template> 492 </template>
493 </if> 493 </if>
494 </settings-subpage> 494 </settings-subpage>
495 </template> 495 </template>
496 </settings-animated-pages> 496 </settings-animated-pages>
497 </template> 497 </template>
498 <script src="privacy_page.js"></script> 498 <script src="privacy_page.js"></script>
499 </dom-module> 499 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698