| OLD | NEW |
| 1 // Copyright 2017 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef IOS_CLEAN_CHROME_BROWSER_UI_ROOT_ROOT_CONTAINER_VIEW_CONTROLLER_H_ | 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_ | 6 #define IOS_CLEAN_CHROME_BROWSER_UI_ROOT_ROOT_CONTAINER_VIEW_CONTROLLER_H_ |
| 7 | 7 |
| 8 #import <UIKit/UIKit.h> | 8 #import <UIKit/UIKit.h> |
| 9 | 9 |
| 10 #import "ios/clean/chrome/browser/ui/animators/zoom_transition_delegate.h" | 10 #import "ios/clean/chrome/browser/ui/transitions/animators/zoom_transition_deleg
ate.h" |
| 11 #import "ios/clean/chrome/browser/ui/presenters/menu_presentation_delegate.h" | 11 #import "ios/clean/chrome/browser/ui/transitions/presenters/menu_presentation_de
legate.h" |
| 12 | 12 |
| 13 // View controller that wholly contains a content view controller. | 13 // View controller that wholly contains a content view controller. |
| 14 @interface RootContainerViewController | 14 @interface RootContainerViewController |
| 15 : UIViewController<MenuPresentationDelegate, ZoomTransitionDelegate> | 15 : UIViewController<MenuPresentationDelegate, ZoomTransitionDelegate> |
| 16 | 16 |
| 17 // View controller showing the main content. | 17 // View controller showing the main content. |
| 18 @property(nonatomic, strong) UIViewController* contentViewController; | 18 @property(nonatomic, strong) UIViewController* contentViewController; |
| 19 | 19 |
| 20 @end | 20 @end |
| 21 | 21 |
| 22 #endif // IOS_CLEAN_CHROME_BROWSER_UI_ROOT_ROOT_CONTAINER_VIEW_CONTROLLER_H_ | 22 #endif // IOS_CLEAN_CHROME_BROWSER_UI_ROOT_ROOT_CONTAINER_VIEW_CONTROLLER_H_ |
| OLD | NEW |