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

Side by Side Diff: ios/chrome/browser/ui/activity_services/appex_constants.h

Issue 2823883002: List Password Manager extensions in a static data structure (Closed)
Patch Set: removed dead comment Created 3 years, 8 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 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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_ACTIVITY_SERVICES_APPEX_CONSTANTS_H_ 5 #ifndef IOS_CHROME_BROWSER_UI_ACTIVITY_SERVICES_APPEX_CONSTANTS_H_
6 #define IOS_CHROME_BROWSER_UI_ACTIVITY_SERVICES_APPEX_CONSTANTS_H_ 6 #define IOS_CHROME_BROWSER_UI_ACTIVITY_SERVICES_APPEX_CONSTANTS_H_
7 7
8 #import <UIKit/UIKit.h> 8 #import <UIKit/UIKit.h>
9 9
10 // Constants for interfacing to other iOS App Extensions. 10 // Constants for interfacing to other iOS App Extensions.
(...skipping 15 matching lines...) Expand all
26 // current page. 26 // current page.
27 extern NSString* const kPasswordAppExPasswordKey; 27 extern NSString* const kPasswordAppExPasswordKey;
28 28
29 // Protocol version number. 29 // Protocol version number.
30 extern NSNumber* const kPasswordAppExVersionNumber; 30 extern NSNumber* const kPasswordAppExVersionNumber;
31 31
32 // String identifying the type of data being sent from host application to 32 // String identifying the type of data being sent from host application to
33 // the App Extension. 33 // the App Extension.
34 extern NSString* const kUTTypeAppExtensionFindLoginAction; 34 extern NSString* const kUTTypeAppExtensionFindLoginAction;
35 35
36 // Signature for 1Password App Extension
37 extern NSString* const kAppExtensionOnePassword;
38
39 // Signature for LastPass App Extension
40 extern NSString* const kAppExtensionLastPass;
41
42 // Prefix of signature for Dashlane App Extension
43 extern NSString* const kAppExtensionDashlanePrefix;
44
45 } // namespace activity_services 36 } // namespace activity_services
46 37
47 #endif // IOS_CHROME_BROWSER_UI_ACTIVITY_SERVICES_APPEX_CONSTANTS_H_ 38 #endif // IOS_CHROME_BROWSER_UI_ACTIVITY_SERVICES_APPEX_CONSTANTS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698