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

Unified Diff: chrome/browser/resources/settings/downloads_page/downloads_page.html

Issue 1836583002: [MD settings] match downloads path to mocks (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: touchups Created 4 years, 9 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/settings/downloads_page/downloads_page.html
diff --git a/chrome/browser/resources/settings/downloads_page/downloads_page.html b/chrome/browser/resources/settings/downloads_page/downloads_page.html
index 598a51b967b6c71c4cfb350547e730a247ffe03f..c09ef4039363e1e28e13f239f7d36a0a76f0431c 100644
--- a/chrome/browser/resources/settings/downloads_page/downloads_page.html
+++ b/chrome/browser/resources/settings/downloads_page/downloads_page.html
@@ -9,25 +9,23 @@
<link rel="import" type="css" href="downloads_page.css">
<template>
<style include="settings-shared"></style>
- <div class="settings-box first">
+ <div class="settings-box first two-line">
<div class="start">
- <settings-input id="downloadsPath" always-flow-label readonly
- i18n-values="label:downloadLocation"
- pref="{{prefs.download.default_directory}}"
- aria-labelledby="locationLabel">
- </settings-input>
+ <div>$i18n{downloadLocation}</div>
+ <div class="secondary">[[prefs.download.default_directory.value]]</div>
</div>
- <paper-button id="changeDownloadsPath" on-tap="selectDownloadLocation_"
- i18n-content="changeDownloadLocation">
+ <paper-button class="secondary-action" id="changeDownloadsPath"
+ on-tap="selectDownloadLocation_">
+ $i18n{changeDownloadLocation}
</paper-button>
</div>
<div class="settings-box block">
<settings-checkbox pref="{{prefs.download.prompt_for_download}}"
- i18n-values="label:promptForDownload">
+ label="$i18n{promptForDownload}">
</settings-checkbox>
<if expr="chromeos">
<settings-checkbox pref="{{prefs.gdata.disabled}}"
- i18n-values="label:disconnectGoogleDriveAccount">
+ label="$i18n{disconnectGoogleDriveAccount}">
</settings-checkbox>
</if>
</div>
« 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