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

Side by Side Diff: ios/clean/chrome/browser/ui/root/root_container_view_controller.h

Issue 2955033002: [ios clean] Moves animator and presenters under transitions (Closed)
Patch Set: Created 3 years, 5 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
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_
OLDNEW
« no previous file with comments | « ios/clean/chrome/browser/ui/root/BUILD.gn ('k') | ios/clean/chrome/browser/ui/root/root_container_view_controller_unittest.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698