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'); |