blob: 1f1c3d6a395e684901b2a90e3771452aae7617e0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROME_BROWSER_IMPORTER_EXTERNAL_PROCESS_IMPORTER_HOST_H_
#define CHROME_BROWSER_IMPORTER_EXTERNAL_PROCESS_IMPORTER_HOST_H_
#include "base/basictypes.h"
#include "base/compiler_specific.h"
#include "chrome/browser/importer/importer_host.h"
class ExternalProcessImporterClient;
class Profile;
class ProfileWriter;
namespace importer {
struct SourceProfile;
}
// This class manages the import process. It creates the in-process half of the
// importer bridge and the external process importer client.
class ExternalProcessImporterHost : public ImporterHost {
public:
ExternalProcessImporterHost();
// ImporterHost:
virtual void Cancel() OVERRIDE;
protected:
virtual ~ExternalProcessImporterHost();
private:
// ImporterHost:
virtual void StartImportSettings(
const importer::SourceProfile& source_profile,
Profile* target_profile,
uint16 items,
ProfileWriter* writer) OVERRIDE;
virtual void InvokeTaskIfDone() OVERRIDE;
virtual void Loaded(BookmarkModel* model, bool ids_reassigned) OVERRIDE;
// Used to pass notifications from the browser side to the external process.
ExternalProcessImporterClient* client_;
// Information about a profile needed for importing.
const importer::SourceProfile* source_profile_;
// Bitmask of items to be imported (see importer::ImportItem enum).
uint16 items_;
// True if the import process has been cancelled.
bool cancelled_;
// True if the import process has been launched. This prevents race
// conditions on import cancel.
bool import_process_launched_;
DISALLOW_COPY_AND_ASSIGN(ExternalProcessImporterHost);
};
#endif // CHROME_BROWSER_IMPORTER_EXTERNAL_PROCESS_IMPORTER_HOST_H_
|