Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(337)

Side by Side Diff: ios/clean/chrome/browser/ui/tab_strip/tab_strip_container_view_controller.h

Issue 2711343003: [tab_container] Remove tab_strip container (Closed)
Patch Set: Rebase Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2016 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_CLEAN_CHROME_BROWSER_UI_TAB_STRIP_TAB_STRIP_CONTAINER_VIEW_CONTROLLE R_H_
6 #define IOS_CLEAN_CHROME_BROWSER_UI_TAB_STRIP_TAB_STRIP_CONTAINER_VIEW_CONTROLLE R_H_
7
8 #import <UIKit/UIKit.h>
9
10 #import "ios/clean/chrome/browser/ui/animators/zoom_transition_delegate.h"
11 #import "ios/clean/chrome/browser/ui/presenters/menu_presentation_delegate.h"
12
13 // Base class for a view controller that contains a content view (generally a
14 // web view with toolbar, but nothing in this class assumes that) and a strip
15 // view, each managed by their own view controllers.
16 @interface TabStripContainerViewController
17 : UIViewController<MenuPresentationDelegate, ZoomTransitionDelegate>
18
19 // View controller showing the main content. If there is no strip view
20 // controller set, the contents of this view controller will fill all of the
21 // strip container's view.
22 @property(nonatomic, strong) UIViewController* contentViewController;
23
24 // View controller showing the strip. It will be of a fixed
25 // height (determined internally by the strip container), but will span the
26 // width of the tab.
27 @property(nonatomic, strong) UIViewController* tabStripViewController;
28
29 @end
30
31 #endif // IOS_CLEAN_CHROME_BROWSER_UI_TAB_STRIP_TAB_STRIP_CONTAINER_VIEW_CONTRO LLER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698