#ifndef CHROME_BROWSER_DEVTOOLS_PROTOCOL_AUTOFILL_HANDLER_H_
#define CHROME_BROWSER_DEVTOOLS_PROTOCOL_AUTOFILL_HANDLER_H_
#include "base/scoped_observation.h"
#include "chrome/browser/devtools/protocol/autofill.h"
#include "chrome/browser/devtools/protocol/protocol.h"
#include "components/autofill/content/browser/content_autofill_driver.h"
#include "components/autofill/content/browser/content_autofill_driver_factory.h"
#include "components/autofill/core/browser/autofill_manager.h"
#include "components/autofill/core/common/form_field_data.h"
#include "content/public/browser/web_contents.h"
Maybe;
String;
namespace autofill {
class AutofillClient;
class AutofillProfile;
class ContentAutofillDriver;
class CreditCard;
}
class AutofillHandler : public protocol::Autofill::Backend,
autofill::AutofillManager::Observer,
autofill::ContentAutofillDriverFactory::Observer { … };
#endif