iOS web browser with a focus on security and privacy
at master 17 lines 310 B view raw
1/* 2 * Endless 3 * Copyright (c) 2018 joshua stein <jcs@jcs.org> 4 * 5 * See LICENSE file for redistribution terms. 6 */ 7 8#import <UIKit/UIKit.h> 9 10#import "WebViewTab.h" 11 12@interface HistoryController : UITableViewController <UIGestureRecognizerDelegate> 13 14- (HistoryController *)initForTab:(WebViewTab *)tab; 15 16@end 17