| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 EXTENSIONS_COMMON_PERMISSIONS_PERMISSION_MESSAGE_H_ | 5 #ifndef EXTENSIONS_COMMON_PERMISSIONS_PERMISSION_MESSAGE_H_ |
| 6 #define EXTENSIONS_COMMON_PERMISSIONS_PERMISSION_MESSAGE_H_ | 6 #define EXTENSIONS_COMMON_PERMISSIONS_PERMISSION_MESSAGE_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| (...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 79 kSearchProvider, | 79 kSearchProvider, |
| 80 kStartupPages, | 80 kStartupPages, |
| 81 kMediaGalleriesAllGalleriesDelete, | 81 kMediaGalleriesAllGalleriesDelete, |
| 82 kScreenlockPrivate, | 82 kScreenlockPrivate, |
| 83 kOverrideBookmarksUI, | 83 kOverrideBookmarksUI, |
| 84 kAutomation, | 84 kAutomation, |
| 85 kAccessibilityFeaturesModify, | 85 kAccessibilityFeaturesModify, |
| 86 kAccessibilityFeaturesRead, | 86 kAccessibilityFeaturesRead, |
| 87 kBluetoothPrivate, | 87 kBluetoothPrivate, |
| 88 kIdentityEmail, | 88 kIdentityEmail, |
| 89 kInterceptAllKeys, |
| 89 kEnumBoundary, | 90 kEnumBoundary, |
| 90 }; | 91 }; |
| 91 COMPILE_ASSERT(PermissionMessage::kNone > PermissionMessage::kUnknown, | 92 COMPILE_ASSERT(PermissionMessage::kNone > PermissionMessage::kUnknown, |
| 92 kNone_not_greater_than_kUnknown); | 93 kNone_not_greater_than_kUnknown); |
| 93 | 94 |
| 94 // Creates the corresponding permission message. | 95 // Creates the corresponding permission message. |
| 95 PermissionMessage(ID id, const base::string16& message); | 96 PermissionMessage(ID id, const base::string16& message); |
| 96 PermissionMessage(ID id, | 97 PermissionMessage(ID id, |
| 97 const base::string16& message, | 98 const base::string16& message, |
| 98 const base::string16& details); | 99 const base::string16& details); |
| (...skipping 25 matching lines...) Expand all Loading... |
| 124 ID id_; | 125 ID id_; |
| 125 base::string16 message_; | 126 base::string16 message_; |
| 126 base::string16 details_; | 127 base::string16 details_; |
| 127 }; | 128 }; |
| 128 | 129 |
| 129 typedef std::vector<PermissionMessage> PermissionMessages; | 130 typedef std::vector<PermissionMessage> PermissionMessages; |
| 130 | 131 |
| 131 } // namespace extensions | 132 } // namespace extensions |
| 132 | 133 |
| 133 #endif // EXTENSIONS_COMMON_PERMISSIONS_PERMISSION_MESSAGE_H_ | 134 #endif // EXTENSIONS_COMMON_PERMISSIONS_PERMISSION_MESSAGE_H_ |
| OLD | NEW |