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

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

Issue 7633029: Remove extension.h #include from profile.h. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix unit_tests. Created 9 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) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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.h" 5 #include "chrome/common/extensions/extension.h"
6 6
7 #include <algorithm> 7 #include <algorithm>
8 8
9 #include "base/base64.h" 9 #include "base/base64.h"
10 #include "base/basictypes.h" 10 #include "base/basictypes.h"
(...skipping 2847 matching lines...) Expand 10 before | Expand all | Expand 10 after
2858 extension_api_permissions( 2858 extension_api_permissions(
2859 extension.GetActivePermissions()->GetAPIsAsStrings()), 2859 extension.GetActivePermissions()->GetAPIsAsStrings()),
2860 extension_type(extension.GetType()), 2860 extension_type(extension.GetType()),
2861 update_url(extension.update_url()) {} 2861 update_url(extension.update_url()) {}
2862 2862
2863 UninstalledExtensionInfo::~UninstalledExtensionInfo() {} 2863 UninstalledExtensionInfo::~UninstalledExtensionInfo() {}
2864 2864
2865 2865
2866 UnloadedExtensionInfo::UnloadedExtensionInfo( 2866 UnloadedExtensionInfo::UnloadedExtensionInfo(
2867 const Extension* extension, 2867 const Extension* extension,
2868 Reason reason) 2868 extension_misc::UnloadedExtensionReason reason)
2869 : reason(reason), 2869 : reason(reason),
2870 already_disabled(false), 2870 already_disabled(false),
2871 extension(extension) {} 2871 extension(extension) {}
2872 2872
2873 UpdatedExtensionPermissionsInfo::UpdatedExtensionPermissionsInfo( 2873 UpdatedExtensionPermissionsInfo::UpdatedExtensionPermissionsInfo(
2874 const Extension* extension, 2874 const Extension* extension,
2875 const ExtensionPermissionSet* permissions, 2875 const ExtensionPermissionSet* permissions,
2876 Reason reason) 2876 Reason reason)
2877 : reason(reason), 2877 : reason(reason),
2878 extension(extension), 2878 extension(extension),
2879 permissions(permissions) {} 2879 permissions(permissions) {}
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698