Chromium Code Reviews| Index: ios/chrome/browser/native_app_launcher/native_app_navigation_controller.h |
| diff --git a/ios/chrome/browser/native_app_launcher/native_app_navigation_controller.h b/ios/chrome/browser/native_app_launcher/native_app_navigation_controller.h |
| index a343b9e9646691cf8945941ca7e9a081b9b6eb37..30e78a194176f2866dba6ba40b28d4dedc110dd4 100644 |
| --- a/ios/chrome/browser/native_app_launcher/native_app_navigation_controller.h |
| +++ b/ios/chrome/browser/native_app_launcher/native_app_navigation_controller.h |
| @@ -10,8 +10,6 @@ |
| #import "ios/chrome/browser/native_app_launcher/native_app_navigation_controller_protocol.h" |
| #import "ios/web/public/web_state/crw_web_controller_observer.h" |
| -@class Tab; |
| - |
| namespace net { |
| class URLRequestContextGetter; |
| } // namespace net |
| @@ -26,12 +24,10 @@ class WebState; |
| @interface NativeAppNavigationController |
| : NSObject<CRWWebControllerObserver, NativeAppNavigationControllerProtocol> |
| -// Designated initializer. The use of |tab| will be phased out in the future |
| -// when all the information needed can be fulfilled by |webState|. Use this |
| -// instead of -init. |
| +// Designated initializer. |
|
sdefresne
2017/03/06 19:44:03
This comment is redundant with "NS_DESIGNATED_INIT
pkl (ping after 24h if needed)
2017/03/07 01:17:53
Done.
|
| - (instancetype)initWithWebState:(web::WebState*)webState |
| requestContextGetter:(net::URLRequestContextGetter*)context |
| - tab:(Tab*)tab NS_DESIGNATED_INITIALIZER; |
| + NS_DESIGNATED_INITIALIZER; |
| - (instancetype)init NS_UNAVAILABLE; |