gn format //chrome
[chromium-blink-merge.git] / extensions / browser / info_map.h
blobb5ea0deb554667481054a301ebf0569523d5d43a
1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef EXTENSIONS_BROWSER_INFO_MAP_H_
6 #define EXTENSIONS_BROWSER_INFO_MAP_H_
8 #include <string>
10 #include "base/basictypes.h"
11 #include "base/memory/ref_counted.h"
12 #include "base/memory/scoped_ptr.h"
13 #include "base/time/time.h"
14 #include "extensions/browser/process_map.h"
15 #include "extensions/browser/quota_service.h"
16 #include "extensions/common/extension_set.h"
17 #include "extensions/common/permissions/api_permission.h"
19 namespace base {
20 class FilePath;
23 namespace extensions {
24 class ContentVerifier;
25 class Extension;
27 // Contains extension data that needs to be accessed on the IO thread. It can
28 // be created/destroyed on any thread, but all other methods must be called on
29 // the IO thread.
30 class InfoMap : public base::RefCountedThreadSafe<InfoMap> {
31 public:
32 InfoMap();
34 const ExtensionSet& extensions() const { return extensions_; }
35 const ExtensionSet& disabled_extensions() const {
36 return disabled_extensions_;
39 // Information about which extensions are assigned to which render processes.
40 const ProcessMap& process_map() const { return process_map_; }
42 // Callback for when new extensions are loaded.
43 void AddExtension(const extensions::Extension* extension,
44 base::Time install_time,
45 bool incognito_enabled,
46 bool notifications_disabled);
48 // Callback for when an extension is unloaded.
49 void RemoveExtension(const std::string& extension_id,
50 const extensions::UnloadedExtensionInfo::Reason reason);
52 // Returns the time the extension was installed, or base::Time() if not found.
53 base::Time GetInstallTime(const std::string& extension_id) const;
55 // Returns true if the user has allowed this extension to run in incognito
56 // mode.
57 bool IsIncognitoEnabled(const std::string& extension_id) const;
59 // Returns true if the given extension can see events and data from another
60 // sub-profile (incognito to original profile, or vice versa).
61 bool CanCrossIncognito(const extensions::Extension* extension) const;
63 // Adds an entry to process_map_.
64 void RegisterExtensionProcess(const std::string& extension_id,
65 int process_id,
66 int site_instance_id);
68 // Removes an entry from process_map_.
69 void UnregisterExtensionProcess(const std::string& extension_id,
70 int process_id,
71 int site_instance_id);
72 void UnregisterAllExtensionsInProcess(int process_id);
74 // Returns the subset of extensions which has the same |origin| in
75 // |process_id| with the specified |permission|.
76 void GetExtensionsWithAPIPermissionForSecurityOrigin(
77 const GURL& origin,
78 int process_id,
79 extensions::APIPermission::ID permission,
80 ExtensionSet* extensions) const;
82 // Returns true if there is exists an extension with the same origin as
83 // |origin| in |process_id| with |permission|.
84 bool SecurityOriginHasAPIPermission(const GURL& origin,
85 int process_id,
86 extensions::APIPermission::ID permission)
87 const;
89 // Maps a |file_url| to a |file_path| on the local filesystem, including
90 // resources in extensions. Returns true on success. See NaClBrowserDelegate
91 // for full details.
92 bool MapUrlToLocalFilePath(const GURL& file_url,
93 bool use_blocking_api,
94 base::FilePath* file_path);
96 // Returns the IO thread QuotaService. Creates the instance on first call.
97 QuotaService* GetQuotaService();
99 // Keep track of the signin process, so we can restrict extension access to
100 // it.
101 void SetSigninProcess(int process_id);
102 bool IsSigninProcess(int process_id) const;
104 // Notifications can be enabled/disabled in real time by the user.
105 void SetNotificationsDisabled(const std::string& extension_id,
106 bool notifications_disabled);
107 bool AreNotificationsDisabled(const std::string& extension_id) const;
109 void SetContentVerifier(ContentVerifier* verifier);
110 ContentVerifier* content_verifier() { return content_verifier_.get(); }
112 private:
113 friend class base::RefCountedThreadSafe<InfoMap>;
115 // Extra dynamic data related to an extension.
116 struct ExtraData;
117 // Map of extension_id to ExtraData.
118 typedef std::map<std::string, ExtraData> ExtraDataMap;
120 ~InfoMap();
122 ExtensionSet extensions_;
123 ExtensionSet disabled_extensions_;
125 // Extra data associated with enabled extensions.
126 ExtraDataMap extra_data_;
128 // Used by dispatchers to limit API quota for individual extensions.
129 // The QuotaService is not thread safe. We need to create and destroy it on
130 // the IO thread.
131 scoped_ptr<QuotaService> quota_service_;
133 // Assignment of extensions to renderer processes.
134 extensions::ProcessMap process_map_;
136 int signin_process_id_;
138 scoped_refptr<ContentVerifier> content_verifier_;
141 } // namespace extensions
143 #endif // EXTENSIONS_BROWSER_INFO_MAP_H_