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

Unified Diff: chrome/browser/ui/gtk/importer/import_progress_dialog_gtk.h

Issue 9702103: Clean up first run: (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 8 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/browser/ui/gtk/importer/import_progress_dialog_gtk.h
===================================================================
--- chrome/browser/ui/gtk/importer/import_progress_dialog_gtk.h (revision 127058)
+++ chrome/browser/ui/gtk/importer/import_progress_dialog_gtk.h (working copy)
@@ -23,8 +23,7 @@
class ImportProgressDialogGtk : public importer::ImporterProgressObserver {
public:
// Displays the import progress dialog box and starts the import process.
- static void StartImport(GtkWindow* parent,
- uint16 items,
+ static void StartImport(uint16 items,
ImporterHost* importer_host,
ImporterObserver* importer_observer,
const importer::SourceProfile& source_profile,
@@ -32,8 +31,7 @@
bool first_run);
private:
- ImportProgressDialogGtk(GtkWindow* parent,
- uint16 items,
+ ImportProgressDialogGtk(uint16 items,
ImporterHost* importer_host,
ImporterObserver* importer_observer,
const string16& importer_name,
@@ -52,9 +50,6 @@
virtual void ImportItemEnded(importer::ImportItem item) OVERRIDE;
virtual void ImportEnded() OVERRIDE;
- // Parent window.
- GtkWindow* parent_;
-
// Import progress dialog.
GtkWidget* dialog_;

Powered by Google App Engine
This is Rietveld 408576698