| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 "chrome/common/extensions/extension_messages.h" | 5 #include "chrome/common/extensions/extension_messages.h" |
| 6 | 6 |
| 7 #include "chrome/common/extensions/extension.h" | |
| 8 #include "chrome/common/extensions/extension_constants.h" | 7 #include "chrome/common/extensions/extension_constants.h" |
| 9 #include "chrome/common/extensions/permissions/permissions_data.h" | |
| 10 #include "content/public/common/common_param_traits.h" | 8 #include "content/public/common/common_param_traits.h" |
| 9 #include "extensions/common/extension.h" |
| 11 #include "extensions/common/manifest.h" | 10 #include "extensions/common/manifest.h" |
| 12 #include "extensions/common/manifest_handler.h" | 11 #include "extensions/common/manifest_handler.h" |
| 12 #include "extensions/common/permissions/permissions_data.h" |
| 13 #include "extensions/common/permissions/permissions_info.h" | 13 #include "extensions/common/permissions/permissions_info.h" |
| 14 | 14 |
| 15 using extensions::APIPermission; | 15 using extensions::APIPermission; |
| 16 using extensions::APIPermissionInfo; | 16 using extensions::APIPermissionInfo; |
| 17 using extensions::APIPermissionSet; | 17 using extensions::APIPermissionSet; |
| 18 using extensions::Extension; | 18 using extensions::Extension; |
| 19 using extensions::Manifest; | 19 using extensions::Manifest; |
| 20 using extensions::ManifestHandler; | 20 using extensions::ManifestHandler; |
| 21 using extensions::ManifestPermission; | 21 using extensions::ManifestPermission; |
| 22 using extensions::ManifestPermissionSet; | 22 using extensions::ManifestPermissionSet; |
| (...skipping 224 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 247 ReadParam(m, iter, &p->explicit_hosts) && | 247 ReadParam(m, iter, &p->explicit_hosts) && |
| 248 ReadParam(m, iter, &p->scriptable_hosts); | 248 ReadParam(m, iter, &p->scriptable_hosts); |
| 249 } | 249 } |
| 250 | 250 |
| 251 void ParamTraits<ExtensionMsg_Loaded_Params>::Log(const param_type& p, | 251 void ParamTraits<ExtensionMsg_Loaded_Params>::Log(const param_type& p, |
| 252 std::string* l) { | 252 std::string* l) { |
| 253 l->append(p.id); | 253 l->append(p.id); |
| 254 } | 254 } |
| 255 | 255 |
| 256 } // namespace IPC | 256 } // namespace IPC |
| OLD | NEW |