#ifndef IOS_WEB_VIEW_INTERNAL_SYNC_CWV_SYNC_CONTROLLER_INTERNAL_H_
#define IOS_WEB_VIEW_INTERNAL_SYNC_CWV_SYNC_CONTROLLER_INTERNAL_H_
#import "ios/web_view/public/cwv_sync_controller.h"
NS_ASSUME_NONNULL_BEGIN
namespace syncer {
class SyncService;
}
namespace signin {
class IdentityManager;
}
class PrefService;
@interface CWVSyncController ()
- (instancetype)initWithSyncService:(syncer::SyncService*)syncService
identityManager:(signin::IdentityManager*)identityManager
prefService:(PrefService*)prefService
NS_DESIGNATED_INITIALIZER;
@end
NS_ASSUME_NONNULL_END
#endif