| 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 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 138 return id_ > that.id_; | 138 return id_ > that.id_; |
| 139 } | 139 } |
| 140 | 140 |
| 141 private: | 141 private: |
| 142 ID id_; | 142 ID id_; |
| 143 base::string16 message_; | 143 base::string16 message_; |
| 144 base::string16 details_; | 144 base::string16 details_; |
| 145 }; | 145 }; |
| 146 | 146 |
| 147 typedef std::vector<PermissionMessage> PermissionMessages; | 147 typedef std::vector<PermissionMessage> PermissionMessages; |
| 148 typedef std::vector<PermissionMessage::ID> PermissionMessageIDs; |
| 148 | 149 |
| 149 } // namespace extensions | 150 } // namespace extensions |
| 150 | 151 |
| 151 #endif // EXTENSIONS_COMMON_PERMISSIONS_PERMISSION_MESSAGE_H_ | 152 #endif // EXTENSIONS_COMMON_PERMISSIONS_PERMISSION_MESSAGE_H_ |
| OLD | NEW |