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

Unified Diff: chrome/common/platform_util_linux.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
Index: chrome/common/platform_util_linux.cc
===================================================================
--- chrome/common/platform_util_linux.cc (revision 12923)
+++ chrome/common/platform_util_linux.cc (working copy)
@@ -4,6 +4,8 @@
#include "chrome/common/platform_util.h"
+#include <gtk/gtk.h>
+
#include "base/file_path.h"
#include "base/file_util.h"
#include "base/process_util.h"
@@ -25,4 +27,8 @@
base::LaunchApp(argv, no_files, false, NULL);
}
+gfx::NativeWindow GetTopLevel(gfx::NativeView view) {
+ return GTK_WINDOW(gtk_widget_get_toplevel(view));
+}
+
} // namespace platform_util

Powered by Google App Engine
This is Rietveld 408576698