#ifndef CHROME_BROWSER_IMPORTER_EXTERNAL_PROCESS_IMPORTER_CLIENT_H_
#define CHROME_BROWSER_IMPORTER_EXTERNAL_PROCESS_IMPORTER_CLIENT_H_
#include <stddef.h>
#include <stdint.h>
#include <string>
#include <vector>
#include "base/memory/ref_counted.h"
#include "base/memory/weak_ptr.h"
#include "build/build_config.h"
#include "chrome/common/importer/importer_autofill_form_data_entry.h"
#include "chrome/common/importer/importer_data_types.h"
#include "chrome/common/importer/importer_url_row.h"
#include "chrome/common/importer/profile_import.mojom.h"
#include "components/favicon_base/favicon_usage_data.h"
#include "components/history/core/browser/history_types.h"
#include "mojo/public/cpp/bindings/receiver.h"
#include "mojo/public/cpp/bindings/remote.h"
class ExternalProcessImporterHost;
struct ImporterAutofillFormDataEntry;
struct ImportedBookmarkEntry;
class InProcessImporterBridge;
namespace importer {
struct ImportedPasswordForm;
struct SearchEngineInfo;
}
class ExternalProcessImporterClient
: public chrome::mojom::ProfileImportObserver,
public base::RefCounted<ExternalProcessImporterClient> { … };
#endif