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

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

Issue 15239002: Move Extension and PermissionsData to extensions/common. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 7 years, 1 month 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"
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
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
OLDNEW
« no previous file with comments | « chrome/common/extensions/extension_messages.h ('k') | chrome/common/extensions/extension_process_policy.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698