blob: a33b6e21f551ff91076a42f319f7caf412221865 [file] [log] [blame]
// Copyright 2017 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#import "ios/chrome/browser/autofill/model/autofill_tab_helper.h"
#import "base/check.h"
#import "base/memory/ptr_util.h"
#import "components/autofill/ios/browser/autofill_agent.h"
#import "components/autofill/ios/browser/autofill_driver_ios.h"
#import "components/autofill/ios/browser/autofill_driver_ios_factory.h"
#import "ios/chrome/browser/infobars/model/infobar_manager_impl.h"
#import "ios/chrome/browser/shared/model/application_context/application_context.h"
#import "ios/chrome/browser/shared/model/browser_state/chrome_browser_state.h"
#import "ios/chrome/browser/shared/public/commands/autofill_commands.h"
#import "ios/chrome/browser/ui/autofill/chrome_autofill_client_ios.h"
AutofillTabHelper::~AutofillTabHelper() = default;
void AutofillTabHelper::SetBaseViewController(
UIViewController* base_view_controller) {
autofill_client_->SetBaseViewController(base_view_controller);
}
void AutofillTabHelper::SetCommandsHandler(
id<AutofillCommands> commands_handler) {
autofill_client_->set_commands_handler(commands_handler);
}
id<FormSuggestionProvider> AutofillTabHelper::GetSuggestionProvider() {
return autofill_agent_;
}
AutofillTabHelper::AutofillTabHelper(web::WebState* web_state)
: browser_state_(
ChromeBrowserState::FromBrowserState(web_state->GetBrowserState())),
autofill_agent_([[AutofillAgent alloc]
initWithPrefService:browser_state_->GetPrefs()
webState:web_state]) {
web_state->AddObserver(this);
infobars::InfoBarManager* infobar_manager =
InfoBarManagerImpl::FromWebState(web_state);
DCHECK(infobar_manager);
autofill_client_ = std::make_unique<autofill::ChromeAutofillClientIOS>(
browser_state_, web_state, infobar_manager, autofill_agent_);
autofill::AutofillDriverIOSFactory::CreateForWebState(
web_state, autofill_client_.get(), autofill_agent_,
GetApplicationContext()->GetApplicationLocale());
}
void AutofillTabHelper::WebStateDestroyed(web::WebState* web_state) {
autofill_agent_ = nil;
web_state->RemoveObserver(this);
}
WEB_STATE_USER_DATA_KEY_IMPL(AutofillTabHelper)