| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 #ifndef EXTENSIONS_BROWSER_EXTENSION_UTIL_H_ | 5 #ifndef EXTENSIONS_BROWSER_EXTENSION_UTIL_H_ |
| 6 #define EXTENSIONS_BROWSER_EXTENSION_UTIL_H_ | 6 #define EXTENSIONS_BROWSER_EXTENSION_UTIL_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 class GURL; | 10 class GURL; |
| 11 | 11 |
| 12 namespace content { | 12 namespace content { |
| 13 class BrowserContext; | 13 class BrowserContext; |
| 14 class StoragePartition; |
| 14 } | 15 } |
| 15 | 16 |
| 16 namespace extensions { | 17 namespace extensions { |
| 17 class Extension; | 18 class Extension; |
| 18 struct ExtensionInfo; | 19 struct ExtensionInfo; |
| 19 | 20 |
| 20 namespace util { | 21 namespace util { |
| 21 | 22 |
| 22 // TODO(benwells): Move functions from | 23 // TODO(benwells): Move functions from |
| 23 // chrome/browser/extensions/extension_util.h/cc that are only dependent on | 24 // chrome/browser/extensions/extension_util.h/cc that are only dependent on |
| 24 // extensions/ here. | 25 // extensions/ here. |
| 25 | 26 |
| 26 // Returns true if the extension has isolated storage. | 27 // Returns true if the extension has isolated storage. |
| 27 bool HasIsolatedStorage(const ExtensionInfo& info); | 28 bool HasIsolatedStorage(const ExtensionInfo& info); |
| 28 | 29 |
| 29 // Returns true if the site URL corresponds to an extension or app and has | 30 // Returns true if the site URL corresponds to an extension or app and has |
| 30 // isolated storage. | 31 // isolated storage. |
| 31 bool SiteHasIsolatedStorage(const GURL& extension_site_url, | 32 bool SiteHasIsolatedStorage(const GURL& extension_site_url, |
| 32 content::BrowserContext* context); | 33 content::BrowserContext* context); |
| 33 | 34 |
| 34 // Returns true if the extension can be enabled in incognito mode. | 35 // Returns true if the extension can be enabled in incognito mode. |
| 35 bool CanBeIncognitoEnabled(const Extension* extension); | 36 bool CanBeIncognitoEnabled(const Extension* extension); |
| 36 | 37 |
| 38 content::StoragePartition* GetStoragePartitionForExtensionId( |
| 39 const std::string& extension_id, |
| 40 content::BrowserContext* browser_context); |
| 41 |
| 37 } // namespace util | 42 } // namespace util |
| 38 } // namespace extensions | 43 } // namespace extensions |
| 39 | 44 |
| 40 #endif // EXTENSIONS_BROWSER_EXTENSION_UTIL_H_ | 45 #endif // EXTENSIONS_BROWSER_EXTENSION_UTIL_H_ |
| OLD | NEW |