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 "extensions/common/extension_messages.h" |
6 | 6 |
7 #include "chrome/common/extensions/extension_constants.h" | |
8 #include "content/public/common/common_param_traits.h" | 7 #include "content/public/common/common_param_traits.h" |
9 #include "extensions/common/extension.h" | 8 #include "extensions/common/extension.h" |
10 #include "extensions/common/manifest.h" | 9 #include "extensions/common/manifest.h" |
11 #include "extensions/common/manifest_handler.h" | 10 #include "extensions/common/manifest_handler.h" |
12 #include "extensions/common/permissions/permissions_data.h" | 11 #include "extensions/common/permissions/permissions_data.h" |
13 #include "extensions/common/permissions/permissions_info.h" | 12 #include "extensions/common/permissions/permissions_info.h" |
14 | 13 |
15 using extensions::APIPermission; | 14 using extensions::APIPermission; |
16 using extensions::APIPermissionInfo; | 15 using extensions::APIPermissionInfo; |
17 using extensions::APIPermissionSet; | 16 using extensions::APIPermissionSet; |
(...skipping 229 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
247 ReadParam(m, iter, &p->explicit_hosts) && | 246 ReadParam(m, iter, &p->explicit_hosts) && |
248 ReadParam(m, iter, &p->scriptable_hosts); | 247 ReadParam(m, iter, &p->scriptable_hosts); |
249 } | 248 } |
250 | 249 |
251 void ParamTraits<ExtensionMsg_Loaded_Params>::Log(const param_type& p, | 250 void ParamTraits<ExtensionMsg_Loaded_Params>::Log(const param_type& p, |
252 std::string* l) { | 251 std::string* l) { |
253 l->append(p.id); | 252 l->append(p.id); |
254 } | 253 } |
255 | 254 |
256 } // namespace IPC | 255 } // namespace IPC |
OLD | NEW |