diff options
author | tony@chromium.org <tony@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-11-04 18:37:31 +0000 |
---|---|---|
committer | tony@chromium.org <tony@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-11-04 18:37:31 +0000 |
commit | 630947caffc803a4cc96e3754af45aeedc957c0c (patch) | |
tree | 3950c0a479831c51a008a4ef210829a041498f33 /chrome/browser/views/tab_contents | |
parent | 055aedeb2134e49c10c3b3a3593cb8df768d737c (diff) | |
download | chromium_src-630947caffc803a4cc96e3754af45aeedc957c0c.zip chromium_src-630947caffc803a4cc96e3754af45aeedc957c0c.tar.gz chromium_src-630947caffc803a4cc96e3754af45aeedc957c0c.tar.bz2 |
Enable localization of default downloaded filename.
Instead of localizing "download" string in net_util.cc, make a caller,
download_manger, provide a localized string.
BUG=25289
TEST=NetUtilTest.GetSuggestedFilename,DownloadManagerTest.TestDownloadFilename
Original patch by hayato@google.com at:
http://codereview.chromium.org/343014/show
Review URL: http://codereview.chromium.org/367003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@30971 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/views/tab_contents')
-rw-r--r-- | chrome/browser/views/tab_contents/tab_contents_view_win.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/chrome/browser/views/tab_contents/tab_contents_view_win.cc b/chrome/browser/views/tab_contents/tab_contents_view_win.cc index 65937e0..29c967b 100644 --- a/chrome/browser/views/tab_contents/tab_contents_view_win.cc +++ b/chrome/browser/views/tab_contents/tab_contents_view_win.cc @@ -9,6 +9,7 @@ #include "app/gfx/canvas_paint.h" #include "app/os_exchange_data.h" #include "app/os_exchange_data_provider_win.h" +#include "base/file_path.h" #include "base/keyboard_codes.h" #include "base/time.h" #include "base/win_util.h" @@ -138,7 +139,7 @@ void TabContentsViewWin::StartDragging(const WebDropData& drop_data, file_name = file_name.BaseName().RemoveExtension(); if (file_name.value().empty()) { // Retrieve the name from the URL. - file_name = net::GetSuggestedFilename(drop_data.url, "", "", ""); + file_name = net::GetSuggestedFilename(drop_data.url, "", "", FilePath()); if (file_name.value().size() + drop_data.file_extension.size() + 1 > MAX_PATH) { file_name = FilePath(file_name.value().substr( |