| OLD | NEW |
| (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 _IOS_CHROME_BROWSER_UI_SETTINGS_COMPOSE_EMAIL_HANDLER_COLLECTION_VIEW_CO
NTROLLER_H_ |
| 6 #define _IOS_CHROME_BROWSER_UI_SETTINGS_COMPOSE_EMAIL_HANDLER_COLLECTION_VIEW_CO
NTROLLER_H_ |
| 7 |
| 8 #import "ios/chrome/browser/ui/settings/settings_root_collection_view_controller
.h" |
| 9 |
| 10 @class MailtoURLRewriter; |
| 11 |
| 12 // UI for Compose Email settings to specify which installed Mail client app to |
| 13 // use for handling mailto: URLs. There must be at least 2 Mail client apps |
| 14 // installed before this UI should be shown because there is no need to make |
| 15 // a choice when there is only 1 Mail client app. |
| 16 @interface ComposeEmailHandlerCollectionViewController |
| 17 : SettingsRootCollectionViewController |
| 18 |
| 19 - (instancetype)initWithRewriter:(MailtoURLRewriter*)rewriter; |
| 20 |
| 21 - (instancetype)initWithStyle:(CollectionViewControllerStyle)style |
| 22 NS_UNAVAILABLE; |
| 23 |
| 24 @end |
| 25 |
| 26 #endif // _IOS_CHROME_BROWSER_UI_SETTINGS_COMPOSE_EMAIL_HANDLER_COLLECTION_VIEW
_CONTROLLER_H_ |
| OLD | NEW |