Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / extensions / browser / info_map.h
blob947384ae216c1a1cc061a84f5464064bef8f5b82
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 true if there is exists an extension with the same origin as
75 // |origin| in |process_id| with |permission|.
76 bool SecurityOriginHasAPIPermission(const GURL& origin,
77 int process_id,
78 extensions::APIPermission::ID permission)
79 const;
81 // Maps a |file_url| to a |file_path| on the local filesystem, including
82 // resources in extensions. Returns true on success. See NaClBrowserDelegate
83 // for full details.
84 bool MapUrlToLocalFilePath(const GURL& file_url,
85 bool use_blocking_api,
86 base::FilePath* file_path);
88 // Returns the IO thread QuotaService. Creates the instance on first call.
89 QuotaService* GetQuotaService();
91 // Notifications can be enabled/disabled in real time by the user.
92 void SetNotificationsDisabled(const std::string& extension_id,
93 bool notifications_disabled);
94 bool AreNotificationsDisabled(const std::string& extension_id) const;
96 void SetContentVerifier(ContentVerifier* verifier);
97 ContentVerifier* content_verifier() { return content_verifier_.get(); }
99 private:
100 friend class base::RefCountedThreadSafe<InfoMap>;
102 // Extra dynamic data related to an extension.
103 struct ExtraData;
104 // Map of extension_id to ExtraData.
105 typedef std::map<std::string, ExtraData> ExtraDataMap;
107 ~InfoMap();
109 ExtensionSet extensions_;
110 ExtensionSet disabled_extensions_;
112 // Extra data associated with enabled extensions.
113 ExtraDataMap extra_data_;
115 // Used by dispatchers to limit API quota for individual extensions.
116 // The QuotaService is not thread safe. We need to create and destroy it on
117 // the IO thread.
118 scoped_ptr<QuotaService> quota_service_;
120 // Assignment of extensions to renderer processes.
121 extensions::ProcessMap process_map_;
123 scoped_refptr<ContentVerifier> content_verifier_;
126 } // namespace extensions
128 #endif // EXTENSIONS_BROWSER_INFO_MAP_H_