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

Unified Diff: chrome/browser/resources/options/advanced_options.js

Issue 5958005: DOMUI: Rename download path 'Browse...' button to 'Change...' (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: add TODO Created 10 years 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 | « chrome/browser/resources/options/advanced_options.html ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/options/advanced_options.js
diff --git a/chrome/browser/resources/options/advanced_options.js b/chrome/browser/resources/options/advanced_options.js
index ce7c2383cb5928ed141fa35d317da7d1353654b2..051c3cf3d3d0db54e68838b1a9f342b0a33f56da 100644
--- a/chrome/browser/resources/options/advanced_options.js
+++ b/chrome/browser/resources/options/advanced_options.js
@@ -78,16 +78,16 @@ var OptionsPage = options.OptionsPage;
$('proxiesConfigureButton').onclick = function(event) {
chrome.send('showNetworkProxySettings');
};
- $('downloadLocationBrowseButton').onclick = function(event) {
+ $('downloadLocationChangeButton').onclick = function(event) {
chrome.send('selectDownloadLocation');
};
// Remove Windows-style accelerators from the Browse button label.
// TODO(csilv): Remove this after the accelerator has been removed from
// the localized strings file, pending removal of old options window.
- $('downloadLocationBrowseButton').textContent =
+ $('downloadLocationChangeButton').textContent =
localStrings.getStringWithoutAccelerator(
- 'downloadLocationBrowseButton');
+ 'downloadLocationChangeButton');
} else {
$('proxiesConfigureButton').onclick = function(event) {
OptionsPage.showPageByName('proxy');
« no previous file with comments | « chrome/browser/resources/options/advanced_options.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698