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

Side by Side Diff: extensions/browser/extension_util.h

Issue 1351223003: Allow extensions to specify that they are not allowed in incognito mode. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add expectations for IncognitoInfo to test Created 5 years, 3 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
« no previous file with comments | « chrome/browser/extensions/installed_loader.cc ('k') | extensions/browser/extension_util.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 } 14 }
15 15
16 namespace extensions { 16 namespace extensions {
17 17 class Extension;
18 struct ExtensionInfo; 18 struct ExtensionInfo;
19 19
20 namespace util { 20 namespace util {
21 21
22 // TODO(tmdiep): Move functions from 22 // TODO(tmdiep): Move functions from
23 // chrome/browser/extensions/extension_util.h/cc that are only dependent on 23 // chrome/browser/extensions/extension_util.h/cc that are only dependent on
24 // extensions/ here. 24 // extensions/ here.
25 25
26 // Returns true if |extension_id| identifies an extension that is installed 26 // Returns true if |extension_id| identifies an extension that is installed
27 // permanently and not ephemerally. 27 // permanently and not ephemerally.
28 bool IsExtensionInstalledPermanently(const std::string& extension_id, 28 bool IsExtensionInstalledPermanently(const std::string& extension_id,
29 content::BrowserContext* context); 29 content::BrowserContext* context);
30 30
31 // Returns true if |extension_id| identifies an ephemeral app. 31 // Returns true if |extension_id| identifies an ephemeral app.
32 bool IsEphemeralApp(const std::string& extension_id, 32 bool IsEphemeralApp(const std::string& extension_id,
33 content::BrowserContext* context); 33 content::BrowserContext* context);
34 34
35 // Returns true if the extension has isolated storage. 35 // Returns true if the extension has isolated storage.
36 bool HasIsolatedStorage(const ExtensionInfo& info); 36 bool HasIsolatedStorage(const ExtensionInfo& info);
37 37
38 // Returns true if the site URL corresponds to an extension or app and has 38 // Returns true if the site URL corresponds to an extension or app and has
39 // isolated storage. 39 // isolated storage.
40 bool SiteHasIsolatedStorage(const GURL& extension_site_url, 40 bool SiteHasIsolatedStorage(const GURL& extension_site_url,
41 content::BrowserContext* context); 41 content::BrowserContext* context);
42 42
43 // Returns true if the extension can be enabled in incognito mode.
44 bool CanBeIncognitoEnabled(const Extension* extension);
45
43 } // namespace util 46 } // namespace util
44 } // namespace extensions 47 } // namespace extensions
45 48
46 #endif // EXTENSIONS_BROWSER_EXTENSION_UTIL_H_ 49 #endif // EXTENSIONS_BROWSER_EXTENSION_UTIL_H_
OLDNEW
« no previous file with comments | « chrome/browser/extensions/installed_loader.cc ('k') | extensions/browser/extension_util.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698