blob: 1b098816e8be375d56cb89393b648d72e11648b7 [file] [log] [blame]
// Copyright 2018 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.
#ifndef IOS_CHROME_BROWSER_UI_LIST_MODEL_LIST_ITEM_CONTROLLER_H_
#define IOS_CHROME_BROWSER_UI_LIST_MODEL_LIST_ITEM_CONTROLLER_H_
// ListItem can be created with a default item type but it needs to
// have a valid item type to be inserted in the model. Only the
// UIViewControllers managing the item are allowed to set the item type.
@interface ListItem (Controller)
// Redeclared as readwrite.
@property(nonatomic, readwrite, assign) NSInteger type;
@end
#endif // IOS_CHROME_BROWSER_UI_LIST_MODEL_LIST_ITEM_CONTROLLER_H_