OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #ifndef CHROME_BROWSER_GTK_DOWNLOAD_IN_PROGRESS_DIALOG_GTK_H_ |
| 6 #define CHROME_BROWSER_GTK_DOWNLOAD_IN_PROGRESS_DIALOG_GTK_H_ |
| 7 |
| 8 #include "base/basictypes.h" |
| 9 |
| 10 class Browser; |
| 11 |
| 12 typedef struct _GtkWidget GtkWidget; |
| 13 |
| 14 class DownloadInProgressDialogGtk { |
| 15 public: |
| 16 explicit DownloadInProgressDialogGtk(Browser* browser); |
| 17 |
| 18 private: |
| 19 static void OnResponse(GtkWidget* widget, int response, |
| 20 DownloadInProgressDialogGtk* dialog); |
| 21 |
| 22 Browser* browser_; |
| 23 |
| 24 DISALLOW_COPY_AND_ASSIGN(DownloadInProgressDialogGtk); |
| 25 }; |
| 26 |
| 27 #endif // CHROME_BROWSER_GTK_DOWNLOAD_IN_PROGRESS_DIALOG_GTK_H_ |
OLD | NEW |