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

Side by Side Diff: ios/chrome/browser/ui/settings/compose_email_handler_collection_view_controller.h

Issue 2870783002: Adds Compose Email Settings UI for deprecating Native App Launcher (Closed)
Patch Set: replied to comments from rohitrao Created 3 years, 7 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
(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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698