Upstream version 7.36.149.0
[platform/framework/web/crosswalk.git] / src / chrome / browser / extensions / extension_util.h
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.
4
5 #ifndef CHROME_BROWSER_EXTENSIONS_EXTENSION_UTIL_H_
6 #define CHROME_BROWSER_EXTENSIONS_EXTENSION_UTIL_H_
7
8 #include <string>
9
10 #include "base/memory/scoped_ptr.h"
11 #include "url/gurl.h"
12
13 namespace base {
14 class DictionaryValue;
15 }
16
17 namespace content {
18 class BrowserContext;
19 }
20
21 namespace gfx {
22 class ImageSkia;
23 }
24
25 namespace extensions {
26
27 class Extension;
28 struct ExtensionInfo;
29
30 namespace util {
31
32 // Returns true if |extension_id| can run in an incognito window.
33 bool IsIncognitoEnabled(const std::string& extension_id,
34                         content::BrowserContext* context);
35
36 // Sets whether |extension_id| can run in an incognito window. Reloads the
37 // extension if it's enabled since this permission is applied at loading time
38 // only. Note that an ExtensionService must exist.
39 void SetIsIncognitoEnabled(const std::string& extension_id,
40                            content::BrowserContext* context,
41                            bool enabled);
42
43 // Returns true if |extension| can see events and data from another sub-profile
44 // (incognito to original profile, or vice versa).
45 bool CanCrossIncognito(const extensions::Extension* extension,
46                        content::BrowserContext* context);
47
48 // Returns true if |extension| can be loaded in incognito.
49 bool CanLoadInIncognito(const extensions::Extension* extension,
50                         content::BrowserContext* context);
51
52 // Returns true if this extension can inject scripts into pages with file URLs.
53 bool AllowFileAccess(const std::string& extension_id,
54                      content::BrowserContext* context);
55
56 // Sets whether |extension_id| can inject scripts into pages with file URLs.
57 // Reloads the extension if it's enabled since this permission is applied at
58 // loading time only. Note than an ExtensionService must exist.
59 void SetAllowFileAccess(const std::string& extension_id,
60                         content::BrowserContext* context,
61                         bool allow);
62
63 // Returns true if |extension_id| can be launched (possibly only after being
64 // enabled).
65 bool IsAppLaunchable(const std::string& extension_id,
66                      content::BrowserContext* context);
67
68 // Returns true if |extension_id| can be launched without being enabled first.
69 bool IsAppLaunchableWithoutEnabling(const std::string& extension_id,
70                                     content::BrowserContext* context);
71
72 // Returns true if |extension_id| is idle and it is safe to perform actions such
73 // as updating.
74 bool IsExtensionIdle(const std::string& extension_id,
75                      content::BrowserContext* context);
76
77 // Returns true if |extension_id| is installed permanently and not ephemerally.
78 bool IsExtensionInstalledPermanently(const std::string& extension_id,
79                                      content::BrowserContext* context);
80
81 // Returns the site of the |extension_id|, given the associated |context|.
82 // Suitable for use with BrowserContext::GetStoragePartitionForSite().
83 GURL GetSiteForExtensionId(const std::string& extension_id,
84                            content::BrowserContext* context);
85
86 // Sets the name, id, and icon resource path of the given extension into the
87 // returned dictionary.
88 scoped_ptr<base::DictionaryValue> GetExtensionInfo(const Extension* extension);
89
90 // Returns true if the extension has isolated storage.
91 bool HasIsolatedStorage(const ExtensionInfo& info);
92
93 // Returns true if the site URL corresponds to an extension or app and has
94 // isolated storage.
95 bool SiteHasIsolatedStorage(const GURL& extension_site_url,
96                             content::BrowserContext* context);
97
98 // Returns the default extension/app icon (for extensions or apps that don't
99 // have one).
100 const gfx::ImageSkia& GetDefaultExtensionIcon();
101 const gfx::ImageSkia& GetDefaultAppIcon();
102
103 }  // namespace util
104 }  // namespace extensions
105
106 #endif  // CHROME_BROWSER_EXTENSIONS_EXTENSION_UTIL_H_