blob: e03fe0ee5b08547e85879273a0987f52c59ec58a [file] [log] [blame]
// Copyright 2015 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#import "components/autofill/ios/browser/personal_data_manager_observer_bridge.h"
#include "base/logging.h"
namespace autofill {
PersonalDataManagerObserverBridge::PersonalDataManagerObserverBridge(
id<PersonalDataManagerObserverBridgeDelegate> delegate)
: delegate_(delegate) {
DCHECK(delegate_);
}
PersonalDataManagerObserverBridge::~PersonalDataManagerObserverBridge() {
}
void PersonalDataManagerObserverBridge::OnPersonalDataChanged() {
[delegate_ onPersonalDataChanged];
}
void PersonalDataManagerObserverBridge::OnInsufficientFormData() {
if ([delegate_ respondsToSelector:@selector(onInsufficientFormData)])
[delegate_ onInsufficientFormData];
}
} // namespace autofill