This source file includes following definitions.
- Create
- RegisterPrefs
- RegisterProfilePrefs
#include "chrome/browser/ui/autofill/autofill_dialog_controller.h"
namespace autofill {
AutofillDialogController::~AutofillDialogController() {}
#if !defined(ENABLE_AUTOFILL_DIALOG)
base::WeakPtr<AutofillDialogController>
AutofillDialogController::Create(
content::WebContents* contents,
const FormData& form_structure,
const GURL& source_url,
const base::Callback<void(const FormStructure*)>& callback) {
NOTIMPLEMENTED();
return base::WeakPtr<AutofillDialogController>();
}
void AutofillDialogController::RegisterPrefs(PrefRegistrySimple* registry) {}
void AutofillDialogController::RegisterProfilePrefs(
user_prefs::PrefRegistrySyncable* registry) {}
#endif
}