diff options
author | sky@chromium.org <sky@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-11-12 23:51:48 +0000 |
---|---|---|
committer | sky@chromium.org <sky@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-11-12 23:51:48 +0000 |
commit | 6ca444ba487be0f8bebeb91352728a8193c4b445 (patch) | |
tree | 44bede6d0bebca375e2afa1e2224ed6b2190c156 | |
parent | 4ff02f753fefef3430438c3c5f0f3ba6a5271ddb (diff) | |
download | chromium_src-6ca444ba487be0f8bebeb91352728a8193c4b445.zip chromium_src-6ca444ba487be0f8bebeb91352728a8193c4b445.tar.gz chromium_src-6ca444ba487be0f8bebeb91352728a8193c4b445.tar.bz2 |
Fixes bug in file browser.
TBR=dhg
BUG=none
Review URL: http://codereview.chromium.org/385081
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@31858 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r-- | chrome/browser/browser_resources.grd | 2 | ||||
-rw-r--r-- | chrome/browser/resources/filebrowse.html | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/browser_resources.grd b/chrome/browser/browser_resources.grd index f1b4c92..09fb192 100644 --- a/chrome/browser/browser_resources.grd +++ b/chrome/browser/browser_resources.grd @@ -1,6 +1,6 @@ <?xml version="1.0" encoding="UTF-8"?> <!-- This comment is only here because changes to resources are not picked up -without changes to the corresponding grd file. arv --> +without changes to the corresponding grd file. sky --> <grit latest_public_release="0" current_release="1"> <outputs> <output filename="grit/browser_resources.h" type="rc_header"> diff --git a/chrome/browser/resources/filebrowse.html b/chrome/browser/resources/filebrowse.html index ebdc1bc..c517476 100644 --- a/chrome/browser/resources/filebrowse.html +++ b/chrome/browser/resources/filebrowse.html @@ -282,7 +282,7 @@ var decend = function(path) { function playMediaFile(path) { var newPath = 'chrome://filebrowse#' + path; - chrome.send('openNewPopupWindow', [newpath]); + chrome.send('openNewPopupWindow', [newPath]); }; function showImage(path) { |