| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 #include "extensions/common/extension_messages.h" | 5 #include "extensions/common/extension_messages.h" |
| 6 | 6 |
| 7 #include <stddef.h> |
| 8 |
| 7 #include "content/public/common/common_param_traits.h" | 9 #include "content/public/common/common_param_traits.h" |
| 8 #include "extensions/common/extension.h" | 10 #include "extensions/common/extension.h" |
| 9 #include "extensions/common/manifest.h" | 11 #include "extensions/common/manifest.h" |
| 10 #include "extensions/common/manifest_handler.h" | 12 #include "extensions/common/manifest_handler.h" |
| 11 #include "extensions/common/permissions/permissions_data.h" | 13 #include "extensions/common/permissions/permissions_data.h" |
| 12 #include "extensions/common/permissions/permissions_info.h" | 14 #include "extensions/common/permissions/permissions_info.h" |
| 13 | 15 |
| 14 using extensions::APIPermission; | 16 using extensions::APIPermission; |
| 15 using extensions::APIPermissionInfo; | 17 using extensions::APIPermissionInfo; |
| 16 using extensions::APIPermissionSet; | 18 using extensions::APIPermissionSet; |
| (...skipping 309 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 326 ReadParam(m, iter, &p->active_permissions) && | 328 ReadParam(m, iter, &p->active_permissions) && |
| 327 ReadParam(m, iter, &p->withheld_permissions); | 329 ReadParam(m, iter, &p->withheld_permissions); |
| 328 } | 330 } |
| 329 | 331 |
| 330 void ParamTraits<ExtensionMsg_Loaded_Params>::Log(const param_type& p, | 332 void ParamTraits<ExtensionMsg_Loaded_Params>::Log(const param_type& p, |
| 331 std::string* l) { | 333 std::string* l) { |
| 332 l->append(p.id); | 334 l->append(p.id); |
| 333 } | 335 } |
| 334 | 336 |
| 335 } // namespace IPC | 337 } // namespace IPC |
| OLD | NEW |