Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(108)

Side by Side Diff: chrome/common/extensions/extension_messages.cc

Issue 23257005: Move Feature and Manifest to top-level extensions. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 7 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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" 7 #include "chrome/common/extensions/extension.h"
8 #include "chrome/common/extensions/extension_constants.h" 8 #include "chrome/common/extensions/extension_constants.h"
9 #include "chrome/common/extensions/manifest.h"
10 #include "chrome/common/extensions/permissions/permissions_data.h" 9 #include "chrome/common/extensions/permissions/permissions_data.h"
11 #include "chrome/common/extensions/permissions/permissions_info.h" 10 #include "chrome/common/extensions/permissions/permissions_info.h"
12 #include "content/public/common/common_param_traits.h" 11 #include "content/public/common/common_param_traits.h"
12 #include "extensions/common/manifest.h"
13 13
14 using extensions::APIPermission; 14 using extensions::APIPermission;
15 using extensions::APIPermissionInfo; 15 using extensions::APIPermissionInfo;
16 using extensions::APIPermissionMap; 16 using extensions::APIPermissionMap;
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::PermissionSet; 20 using extensions::PermissionSet;
21 using extensions::URLPatternSet; 21 using extensions::URLPatternSet;
22 22
(...skipping 183 matching lines...) Expand 10 before | Expand all | Expand 10 after
206 ReadParam(m, iter, &p->explicit_hosts) && 206 ReadParam(m, iter, &p->explicit_hosts) &&
207 ReadParam(m, iter, &p->scriptable_hosts); 207 ReadParam(m, iter, &p->scriptable_hosts);
208 } 208 }
209 209
210 void ParamTraits<ExtensionMsg_Loaded_Params>::Log(const param_type& p, 210 void ParamTraits<ExtensionMsg_Loaded_Params>::Log(const param_type& p,
211 std::string* l) { 211 std::string* l) {
212 l->append(p.id); 212 l->append(p.id);
213 } 213 }
214 214
215 } // namespace IPC 215 } // namespace IPC
OLDNEW
« no previous file with comments | « chrome/common/extensions/extension_file_util_unittest.cc ('k') | chrome/common/extensions/extension_test_util.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698