Commit ad8a4396 authored by gaochun.dev@gmail.com's avatar gaochun.dev@gmail.com

Fix file-select dialog handling for private key (pem) files.

BUG=106544
TEST=Verify that select file dialog allows selection of pem files.


Review URL: http://codereview.chromium.org/8748021

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@114170 0039d316-1c4b-4281-b951-d872f2087c98
parent 2bb57bf1
......@@ -77,7 +77,7 @@ cr.define('options', function() {
* @private
*/
handleBrowsePrivateKey_: function(e) {
this.showFileDialog_('file', 'load', function(filePath) {
this.showFileDialog_('file', 'pem', function(filePath) {
$('extensionPrivateKey').value = filePath;
});
},
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment