OLD | NEW |
(Empty) | |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #ifndef IOS_CHROME_BROWSER_UI_HISTORY_TAB_HISTORY_VIEW_CONTROLLER_H_ |
| 6 #define IOS_CHROME_BROWSER_UI_HISTORY_TAB_HISTORY_VIEW_CONTROLLER_H_ |
| 7 |
| 8 #import <UIKit/UIKit.h> |
| 9 |
| 10 // View controller for displaying a list of CRWSessionEntry objects in a table. |
| 11 @interface TabHistoryViewController : UICollectionViewController |
| 12 |
| 13 // TODO(crbug.com/546355): Convert this class to use an array of |
| 14 // NavigationEntries. |
| 15 @property(nonatomic, retain) NSArray* sessionEntries; |
| 16 |
| 17 // Returns the optimal height needed to display the session entries. |
| 18 // The height returned is usually less than the |suggestedHeight| unless |
| 19 // the last row of the table puts the height just over the |suggestedHeight|. |
| 20 // If the session entries table is taller than the |suggestedHeight| by at least |
| 21 // one row, the last visible session entry will be shown partially so the user |
| 22 // can tell that the table is scrollable. |
| 23 - (CGFloat)optimalHeight:(CGFloat)suggestedHeight; |
| 24 |
| 25 @end |
| 26 |
| 27 #endif // IOS_CHROME_BROWSER_UI_HISTORY_TAB_HISTORY_VIEW_CONTROLLER_H_ |
OLD | NEW |