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

Side by Side Diff: ios/chrome/browser/ui/main/main_coordinator.h

Issue 2886043003: [ObjC ARC] Converts ios/chrome/browser/ui/main:main to ARC. (Closed)
Patch Set: rebase_cleanup 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 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 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_CHROME_BROWSER_UI_MAIN_MAIN_COORDINATOR_H_ 5 #ifndef IOS_CHROME_BROWSER_UI_MAIN_MAIN_COORDINATOR_H_
6 #define IOS_CHROME_BROWSER_UI_MAIN_MAIN_COORDINATOR_H_ 6 #define IOS_CHROME_BROWSER_UI_MAIN_MAIN_COORDINATOR_H_
7 7
8 #import "ios/chrome/browser/chrome_root_coordinator.h" 8 #import "ios/chrome/browser/chrome_root_coordinator.h"
9 9
10 #import <Foundation/Foundation.h> 10 #import <Foundation/Foundation.h>
11 11
12 @class MainViewController; 12 @class MainViewController;
13 13
14 @interface MainCoordinator : ChromeRootCoordinator 14 @interface MainCoordinator : ChromeRootCoordinator
15 15
16 // The view controller this coordinator creates and manages. 16 // The view controller this coordinator creates and manages.
17 // (This is only public while the view controller architecture is being 17 // (This is only public while the view controller architecture is being
18 // refactored). 18 // refactored).
19 @property(nonatomic, readonly, nullable) MainViewController* mainViewController; 19 @property(weak, nonatomic, readonly, nullable)
sdefresne 2017/06/23 14:37:15 nit: @property(nonatomic, weak, readonly, nullable
stkhapugin 2017/06/23 15:07:15 Done.
20 MainViewController* mainViewController;
20 21
21 @end 22 @end
22 23
23 #endif // IOS_CHROME_BROWSER_UI_MAIN_MAIN_COORDINATOR_H_ 24 #endif // IOS_CHROME_BROWSER_UI_MAIN_MAIN_COORDINATOR_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698