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

Unified Diff: chrome/browser/download/download_manager.cc

Issue 56153: Re-enable save package on linux. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 9 months 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 | « no previous file | chrome/browser/download/save_package.cc » ('j') | chrome/common/platform_util.h » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/download/download_manager.cc
===================================================================
--- chrome/browser/download/download_manager.cc (revision 12923)
+++ chrome/browser/download/download_manager.cc (working copy)
@@ -28,6 +28,7 @@
#include "chrome/common/chrome_paths.h"
#include "chrome/common/l10n_util.h"
#include "chrome/common/notification_service.h"
+#include "chrome/common/platform_util.h"
#include "chrome/common/pref_names.h"
#include "chrome/common/pref_service.h"
#include "chrome/common/stl_util-inl.h"
@@ -636,14 +637,11 @@
#if defined(OS_WIN)
std::wstring filter =
win_util::GetFileFilterFromPath(info->suggested_path.value());
- gfx::NativeWindow owning_window =
- contents ? GetAncestor(contents->GetNativeView(), GA_ROOT) : NULL;
#elif defined(OS_LINUX)
std::wstring filter;
- gfx::NativeWindow owning_window = contents ?
- GTK_WINDOW(gtk_widget_get_toplevel(contents->GetNativeView())) :
- NULL;
#endif
+ gfx::NativeWindow owning_window =
+ contents ? platform_util::GetTopLevel(contents->GetNativeView()) : NULL;
select_file_dialog_->SelectFile(SelectFileDialog::SELECT_SAVEAS_FILE,
std::wstring(),
info->suggested_path.ToWStringHack(),
« no previous file with comments | « no previous file | chrome/browser/download/save_package.cc » ('j') | chrome/common/platform_util.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698