Chromium Code Reviews| 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 allow user specify which installed Mail | |
|
jif
2017/05/11 14:03:58
...to allow users to specify...
?
pkl (ping after 24h if needed)
2017/05/11 17:23:16
Done-ish. Rewrote.
| |
| 13 // client app to use for handling mailto: URLs. There must be at least 2 Mail | |
| 14 // client apps installed to use this UI because there is no need for making a | |
| 15 // choice if 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 |