| OLD | NEW |
| 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 Loading... |
| 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_ |
| OLD | NEW |