chromium/ios/chrome/browser/ui/settings/google_services/manage_accounts/with_overridable_model_identity_data_source.h

// Copyright 2024 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef IOS_CHROME_BROWSER_UI_SETTINGS_GOOGLE_SERVICES_MANAGE_ACCOUNTS_WITH_OVERRIDABLE_MODEL_IDENTITY_DATA_SOURCE_H_
#define IOS_CHROME_BROWSER_UI_SETTINGS_GOOGLE_SERVICES_MANAGE_ACCOUNTS_WITH_OVERRIDABLE_MODEL_IDENTITY_DATA_SOURCE_H_

@protocol AccountsModelIdentityDataSource;

// Protocol exposing a settable property -modelIdentityDataSource.
@protocol WithOverridableModelIdentityDataSource

@property(nonatomic, weak) id<AccountsModelIdentityDataSource>
    modelIdentityDataSource;

@end

#endif  // IOS_CHROME_BROWSER_UI_SETTINGS_GOOGLE_SERVICES_MANAGE_ACCOUNTS_WITH_OVERRIDABLE_MODEL_IDENTITY_DATA_SOURCE_H_