OLD | NEW |
---|---|
(Empty) | |
1 // Copyright 2017 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_ROOT_ROOT_CONTAINER_VIEW_CONTROLLER_H_ | |
6 #define IOS_CLEAN_CHROME_BROWSER_UI_ROOT_ROOT_CONTAINER_VIEW_CONTROLLER_H_ | |
7 | |
8 #import <UIKit/UIKit.h> | |
9 | |
10 #import "ios/clean/chrome/browser/ui/animators/zoom_transition_delegate.h" | |
11 | |
12 // View controller that wholly contains a content view controller. | |
lpromero
2017/04/11 15:20:39
Does it make sense to add this view controller to
edchin
2017/04/11 15:52:05
Yes it does. Will do.
edchin
2017/04/12 08:10:52
Done.
| |
13 @interface RootContainerViewController | |
14 : UIViewController<ZoomTransitionDelegate> | |
15 | |
16 // View controller showing the main content. | |
17 @property(nonatomic, weak) UIViewController* contentViewController; | |
18 | |
19 @end | |
20 | |
21 #endif // IOS_CLEAN_CHROME_BROWSER_UI_ROOT_ROOT_CONTAINER_VIEW_CONTROLLER_H_ | |
OLD | NEW |