summaryrefslogtreecommitdiffstats
path: root/chrome/browser/printing/print_dialog_gtk.h
diff options
context:
space:
mode:
authorjam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-11-02 05:59:37 +0000
committerjam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-11-02 05:59:37 +0000
commit6fad26338ed6119903826156f307e20fe6657c31 (patch)
tree5c6baed35fce907a0cea47ed6091c941db8ebfd1 /chrome/browser/printing/print_dialog_gtk.h
parentf75c8f13b967b01babc9454506e9d2ed00519e39 (diff)
downloadchromium_src-6fad26338ed6119903826156f307e20fe6657c31.zip
chromium_src-6fad26338ed6119903826156f307e20fe6657c31.tar.gz
chromium_src-6fad26338ed6119903826156f307e20fe6657c31.tar.bz2
Third patch in getting rid of caching MessageLoop pointers and always using ChromeThread instead.
BUG=25354 Review URL: http://codereview.chromium.org/342068 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@30687 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/printing/print_dialog_gtk.h')
-rw-r--r--chrome/browser/printing/print_dialog_gtk.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/chrome/browser/printing/print_dialog_gtk.h b/chrome/browser/printing/print_dialog_gtk.h
index 7f9cc7f..589af80 100644
--- a/chrome/browser/printing/print_dialog_gtk.h
+++ b/chrome/browser/printing/print_dialog_gtk.h
@@ -11,16 +11,14 @@
#include "base/file_path.h"
class Browser;
-class MessageLoop;
typedef struct _GtkPrintJob GtkPrintJob;
// Currently this dialog only allows the user to choose a printer.
class PrintDialogGtk {
public:
- // Called on the IO thread. Posts the dialog creation action on the given
- // loop.
- static void CreatePrintDialogForPdf(const FilePath& path, MessageLoop* loop);
+ // Called on the IO thread.
+ static void CreatePrintDialogForPdf(const FilePath& path);
private:
explicit PrintDialogGtk(const FilePath& path_to_pdf);