| Index: chrome/profile_import/profile_import_thread.h
|
| ===================================================================
|
| --- chrome/profile_import/profile_import_thread.h (revision 62042)
|
| +++ chrome/profile_import/profile_import_thread.h (working copy)
|
| @@ -28,7 +28,7 @@
|
| class ProfileImportThread : public ChildThread {
|
| public:
|
| ProfileImportThread();
|
| - virtual ~ProfileImportThread();
|
| + virtual ~ProfileImportThread() {}
|
|
|
| // Returns the one profile import thread.
|
| static ProfileImportThread* current() {
|
| @@ -84,7 +84,7 @@
|
|
|
| // Bridge object is passed to importer, so that it can send IPC calls
|
| // directly back to the ProfileImportProcessHost.
|
| - scoped_refptr<ExternalProcessImporterBridge> bridge_;
|
| + ExternalProcessImporterBridge* bridge_;
|
|
|
| // importer::ProfileType enum from importer_list, stored in ProfileInfo
|
| // struct in importer.
|
| @@ -94,7 +94,7 @@
|
| uint16 items_to_import_;
|
|
|
| // Importer of the appropriate type (Firefox, Safari, IE, etc.)
|
| - scoped_refptr<Importer> importer_;
|
| + Importer* importer_;
|
|
|
| DISALLOW_COPY_AND_ASSIGN(ProfileImportThread);
|
| };
|
|
|