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

Unified Diff: chrome/browser/cocoa/first_run_dialog.mm

Issue 160341: First cut at Firefox import on OSX + stubs for Safari import. (Closed)
Patch Set: Address Stuart's comments. Created 11 years, 5 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/cocoa/first_run_dialog.mm
diff --git a/chrome/browser/cocoa/first_run_dialog.mm b/chrome/browser/cocoa/first_run_dialog.mm
index 7af9bcd7055d33f663d5dcb9a64f321cc2c6cfd3..8f7718db4a4e1fea22909f46abd9d9d73723f10b 100644
--- a/chrome/browser/cocoa/first_run_dialog.mm
+++ b/chrome/browser/cocoa/first_run_dialog.mm
@@ -15,6 +15,7 @@
@synthesize makeDefaultBrowser = make_default_browser_;
@synthesize importBookmarks = import_bookmarks_;
@synthesize browserImportSelectedIndex = browser_import_selected_index_;
+@synthesize browserImportList = browser_import_list_;
- (id)init {
self = [super initWithWindowNibName:@"FirstRunDialog"];
@@ -26,6 +27,11 @@
return self;
}
+- (void)dealloc {
+ [browser_import_list_ release];
+ [super dealloc];
stuartmorgan 2009/07/29 20:22:37 Oops missed this before; indentation is off.
+}
+
- (IBAction)showWindow:(id)sender {
// Neat weirdness in the below code - the Application menu stays enabled
// while the window is open but selecting items from it (e.g. Quit) has

Powered by Google App Engine
This is Rietveld 408576698