OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CHROME_BROWSER_IMPORTER_IMPORT_PROGRESS_DIALOG_H_ | 5 #ifndef CHROME_BROWSER_IMPORTER_IMPORT_PROGRESS_DIALOG_H_ |
6 #define CHROME_BROWSER_IMPORTER_IMPORT_PROGRESS_DIALOG_H_ | 6 #define CHROME_BROWSER_IMPORTER_IMPORT_PROGRESS_DIALOG_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #import <Cocoa/Cocoa.h> | 9 #import <Cocoa/Cocoa.h> |
10 | 10 |
(...skipping 23 matching lines...) Expand all Loading... |
34 NSColor* favorites_import_enabled_; | 34 NSColor* favorites_import_enabled_; |
35 NSColor* search_import_enabled_; | 35 NSColor* search_import_enabled_; |
36 NSColor* password_import_enabled_; | 36 NSColor* password_import_enabled_; |
37 NSColor* history_import_enabled_; | 37 NSColor* history_import_enabled_; |
38 | 38 |
39 // Placeholders for "Importing..." and "Done" text. | 39 // Placeholders for "Importing..." and "Done" text. |
40 NSString* progress_text_; | 40 NSString* progress_text_; |
41 NSString* done_text_; | 41 NSString* done_text_; |
42 } | 42 } |
43 | 43 |
| 44 @property(nonatomic, retain) NSString* explanatoryText; |
| 45 @property(nonatomic, retain) NSString* favoritesStatusText; |
| 46 @property(nonatomic, retain) NSString* searchStatusText; |
| 47 @property(nonatomic, retain) NSString* savedPasswordStatusText; |
| 48 @property(nonatomic, retain) NSString* historyStatusText; |
| 49 |
| 50 @property(nonatomic, retain) NSColor* favoritesImportEnabled; |
| 51 @property(nonatomic, retain) NSColor* searchImportEnabled; |
| 52 @property(nonatomic, retain) NSColor* passwordImportEnabled; |
| 53 @property(nonatomic, retain) NSColor* historyImportEnabled; |
| 54 |
44 // Cancel button calls this. | 55 // Cancel button calls this. |
45 - (IBAction)cancel:(id)sender; | 56 - (IBAction)cancel:(id)sender; |
46 | 57 |
47 // Closes the dialog. | 58 // Closes the dialog. |
48 - (void)closeDialog; | 59 - (void)closeDialog; |
49 | 60 |
50 // Methods called by importer_host via ImporterObserverBridge. | 61 // Methods called by importer_host via ImporterObserverBridge. |
51 - (void)ImportItemStarted:(importer::ImportItem)item; | 62 - (void)ImportItemStarted:(importer::ImportItem)item; |
52 - (void)ImportItemEnded:(importer::ImportItem)item; | 63 - (void)ImportItemEnded:(importer::ImportItem)item; |
53 - (void)ImportEnded; | 64 - (void)ImportEnded; |
54 | 65 |
55 @property (nonatomic, retain) NSString* explanatoryText; | |
56 @property (nonatomic, retain) NSString* favoritesStatusText; | |
57 @property (nonatomic, retain) NSString* searchStatusText; | |
58 @property (nonatomic, retain) NSString* savedPasswordStatusText; | |
59 @property (nonatomic, retain) NSString* historyStatusText; | |
60 | |
61 @property (nonatomic, retain) NSColor* favoritesImportEnabled; | |
62 @property (nonatomic, retain) NSColor* searchImportEnabled; | |
63 @property (nonatomic, retain) NSColor* passwordImportEnabled; | |
64 @property (nonatomic, retain) NSColor* historyImportEnabled; | |
65 | |
66 @end | 66 @end |
67 | 67 |
68 // C++ -> objc bridge for import status notifications. | 68 // C++ -> objc bridge for import status notifications. |
69 class ImporterObserverBridge : public ImporterHost::Observer { | 69 class ImporterObserverBridge : public ImporterHost::Observer { |
70 public: | 70 public: |
71 ImporterObserverBridge(ImportProgressDialogController* owner) | 71 ImporterObserverBridge(ImportProgressDialogController* owner) |
72 : owner_(owner) {} | 72 : owner_(owner) {} |
73 virtual ~ImporterObserverBridge() {} | 73 virtual ~ImporterObserverBridge() {} |
74 | 74 |
75 // Invoked when data for the specified item is about to be collected. | 75 // Invoked when data for the specified item is about to be collected. |
(...skipping 17 matching lines...) Expand all Loading... |
93 [owner_ ImportEnded]; | 93 [owner_ ImportEnded]; |
94 } | 94 } |
95 | 95 |
96 private: | 96 private: |
97 ImportProgressDialogController* owner_; | 97 ImportProgressDialogController* owner_; |
98 | 98 |
99 DISALLOW_COPY_AND_ASSIGN(ImporterObserverBridge); | 99 DISALLOW_COPY_AND_ASSIGN(ImporterObserverBridge); |
100 }; | 100 }; |
101 | 101 |
102 #endif // CHROME_BROWSER_IMPORTER_IMPORT_PROGRESS_DIALOG_H_ | 102 #endif // CHROME_BROWSER_IMPORTER_IMPORT_PROGRESS_DIALOG_H_ |
OLD | NEW |