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

Unified Diff: ios/clean/chrome/browser/ui/tab/tab_container_view_controller.h

Issue 2698183002: [tab_container] Consolidate tabStrip into tab_container. (Closed)
Patch Set: Created 3 years, 10 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 side-by-side diff with in-line comments
Download patch
Index: ios/clean/chrome/browser/ui/tab/tab_container_view_controller.h
diff --git a/ios/clean/chrome/browser/ui/tab/tab_container_view_controller.h b/ios/clean/chrome/browser/ui/tab/tab_container_view_controller.h
index 03a2bf463a0dd7d7ca0bce838f5fe7c53ca78463..d754c06b8643d150b01f33d00fb9ab83118532be 100644
--- a/ios/clean/chrome/browser/ui/tab/tab_container_view_controller.h
+++ b/ios/clean/chrome/browser/ui/tab/tab_container_view_controller.h
@@ -14,10 +14,8 @@
#import "ios/clean/chrome/browser/ui/animators/zoom_transition_delegate.h"
#import "ios/clean/chrome/browser/ui/presenters/menu_presentation_delegate.h"
-// Base class for a view controller that contains a content view (generally
-// some kind of web view, but nothing in this class assumes that) and a toolbar
-// view, each managed by their own view controllers.
-// Subclasses manage the specific layout of these view controllers.
+// A view controller that contains several views, each managed by their own
+// view controllers.
@interface TabContainerViewController
: UIViewController<MenuPresentationDelegate, ZoomTransitionDelegate>
@@ -31,10 +29,11 @@
// width of the tab.
@property(nonatomic, strong) UIViewController* toolbarViewController;
-@end
+// View controller showing the tab strip. It will be of a fixed
+// height (determined internally by the tab container), but will span the
+// width of the tab.
+@property(nonatomic, strong) UIViewController* tabStripViewController;
-// Tab container which positions the toolbar at the top.
-@interface TopToolbarTabViewController : TabContainerViewController
@end
// Tab container which positions the toolbar at the bottom.

Powered by Google App Engine
This is Rietveld 408576698