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

Side by Side Diff: remoting/ios/app/app_view_controller.h

Issue 2937733003: [CRD iOS] Branching internal and external implementations (Closed)
Patch Set: Fix presenting check Created 3 years, 6 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
« no previous file with comments | « remoting/ios/app/app_delegate.mm ('k') | remoting/ios/app/app_view_controller_chromium.mm » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(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 REMOTING_IOS_APP_APP_VIEW_CONTROLLER_H_
6 #define REMOTING_IOS_APP_APP_VIEW_CONTROLLER_H_
7
8 #import <UIKit/UIKit.h>
9
10 @protocol AppController<NSObject>
11
12 // For adding new methods, please mark them as optional until they are
13 // implemented in both Chromium and ios_internal. For deletion, just reverse the
14 // procedure. This is to prevent build break in internal buildbot.
15
16 - (void)showMenuAnimated:(BOOL)animated;
17 - (void)hideMenuAnimated:(BOOL)animated;
18 - (void)presentSignInFlow;
19
20 @end
21
22 // The root view controller of the app. It acts as a container controller for
23 // |mainViewController|, which will be shown as the primary content of the view.
24 // Implementation can add drawer or modal for things like the side menu or help
25 // and feedback.
26 @interface AppViewController : UIViewController<AppController>
27
28 - (instancetype)initWithMainViewController:
29 (UIViewController*)mainViewController;
30
31 @end
32
33 #endif // REMOTING_IOS_APP_APP_VIEW_CONTROLLER_H_
OLDNEW
« no previous file with comments | « remoting/ios/app/app_delegate.mm ('k') | remoting/ios/app/app_view_controller_chromium.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698