blob: 6736b6b8b7e478a8b01323374523abc7c96fb009 [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/form_suggestion_tab_helper.h"
#import "base/check.h"
#import "base/memory/ptr_util.h"
#import "ios/chrome/browser/autofill/form_suggestion_controller.h"
#if !defined(__has_feature) || !__has_feature(objc_arc)
#error "This file requires ARC support."
#endif
FormSuggestionTabHelper::~FormSuggestionTabHelper() = default;
id<FormInputSuggestionsProvider>
FormSuggestionTabHelper::GetAccessoryViewProvider() {
return controller_;
}
FormSuggestionTabHelper::FormSuggestionTabHelper(
web::WebState* web_state,
NSArray<id<FormSuggestionProvider>>* providers)
: controller_([[FormSuggestionController alloc]
initWithWebState:web_state
providers:providers]) {
web_state->AddObserver(this);
}
void FormSuggestionTabHelper::WebStateDestroyed(web::WebState* web_state) {
[controller_ detachFromWebState];
web_state->RemoveObserver(this);
controller_ = nil;
}
WEB_STATE_USER_DATA_KEY_IMPL(FormSuggestionTabHelper)