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

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

Issue 2144313002: Plumbing for login apps device policy to extensions. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Devlin feedback Created 3 years, 9 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 | « extensions/browser/extension_prefs.cc ('k') | extensions/browser/pref_names.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 2013 The Chromium Authors. All rights reserved. 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 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_PREF_NAMES_H_ 5 #ifndef EXTENSIONS_BROWSER_PREF_NAMES_H_
6 #define EXTENSIONS_BROWSER_PREF_NAMES_H_ 6 #define EXTENSIONS_BROWSER_PREF_NAMES_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "extensions/browser/extension_prefs_scope.h" 10 #include "extensions/browser/extension_prefs_scope.h"
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 // extension blacklist, which is Google controlled. 61 // extension blacklist, which is Google controlled.
62 extern const char kInstallDenyList[]; 62 extern const char kInstallDenyList[];
63 63
64 // A list containing extensions that Chrome will silently install 64 // A list containing extensions that Chrome will silently install
65 // at startup time. It is a list of strings, each string contains 65 // at startup time. It is a list of strings, each string contains
66 // an extension ID and an update URL, delimited by a semicolon. 66 // an extension ID and an update URL, delimited by a semicolon.
67 // This preference is set by an admin policy, and meant to be only 67 // This preference is set by an admin policy, and meant to be only
68 // accessed through extensions::ExternalPolicyProvider. 68 // accessed through extensions::ExternalPolicyProvider.
69 extern const char kInstallForceList[]; 69 extern const char kInstallForceList[];
70 70
71 // A list containing apps that Chrome will silently install on the login screen
72 // on Chrome OS at startup time. It is a list of strings, each string contains
73 // an app ID and an update URL, delimited by a semicolon.
74 // This preference is set by an admin policy, and meant to be only
75 // accessed through extensions::ExternalPolicyProvider.
76 extern const char kInstallLoginScreenAppList[];
77
71 // String pref for what version chrome was last time the extension prefs were 78 // String pref for what version chrome was last time the extension prefs were
72 // loaded. 79 // loaded.
73 extern const char kLastChromeVersion[]; 80 extern const char kLastChromeVersion[];
74 81
75 // Time of the last extensions auto-update check. 82 // Time of the last extensions auto-update check.
76 extern const char kLastUpdateCheck[]; 83 extern const char kLastUpdateCheck[];
77 84
78 // Blacklist and whitelist for Native Messaging Hosts. 85 // Blacklist and whitelist for Native Messaging Hosts.
79 extern const char kNativeMessagingBlacklist[]; 86 extern const char kNativeMessagingBlacklist[];
80 extern const char kNativeMessagingWhitelist[]; 87 extern const char kNativeMessagingWhitelist[];
(...skipping 30 matching lines...) Expand all
111 // Extension-set content settings. 118 // Extension-set content settings.
112 extern const char kPrefContentSettings[]; 119 extern const char kPrefContentSettings[];
113 120
114 // Extension-set incognito content settings. 121 // Extension-set incognito content settings.
115 extern const char kPrefIncognitoContentSettings[]; 122 extern const char kPrefIncognitoContentSettings[];
116 123
117 } // namespace pref_names 124 } // namespace pref_names
118 } // namespace extensions 125 } // namespace extensions
119 126
120 #endif // EXTENSIONS_BROWSER_PREF_NAMES_H_ 127 #endif // EXTENSIONS_BROWSER_PREF_NAMES_H_
OLDNEW
« no previous file with comments | « extensions/browser/extension_prefs.cc ('k') | extensions/browser/pref_names.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698