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

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

Issue 559603002: Add new ExtensionManagement preference (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fixes addressing #16 Created 6 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 | « extensions/browser/pref_names.h ('k') | no next file » | 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 #include "extensions/browser/pref_names.h" 5 #include "extensions/browser/pref_names.h"
6 6
7 #include "base/logging.h" 7 #include "base/logging.h"
8 8
9 namespace extensions { 9 namespace extensions {
10 namespace pref_names { 10 namespace pref_names {
(...skipping 16 matching lines...) Expand all
27 return false; 27 return false;
28 } 28 }
29 29
30 const char kAlertsInitialized[] = "extensions.alerts.initialized"; 30 const char kAlertsInitialized[] = "extensions.alerts.initialized";
31 const char kAllowedInstallSites[] = "extensions.allowed_install_sites"; 31 const char kAllowedInstallSites[] = "extensions.allowed_install_sites";
32 const char kAllowedTypes[] = "extensions.allowed_types"; 32 const char kAllowedTypes[] = "extensions.allowed_types";
33 const char kAppFullscreenAllowed[] = "apps.fullscreen.allowed"; 33 const char kAppFullscreenAllowed[] = "apps.fullscreen.allowed";
34 const char kBookmarkAppCreationLaunchType[] = 34 const char kBookmarkAppCreationLaunchType[] =
35 "extensions.bookmark_app_creation_launch_type"; 35 "extensions.bookmark_app_creation_launch_type";
36 const char kExtensions[] = "extensions.settings"; 36 const char kExtensions[] = "extensions.settings";
37 const char kExtensionManagement[] = "extensions.management";
37 const char kInstallAllowList[] = "extensions.install.allowlist"; 38 const char kInstallAllowList[] = "extensions.install.allowlist";
38 const char kInstallDenyList[] = "extensions.install.denylist"; 39 const char kInstallDenyList[] = "extensions.install.denylist";
39 const char kInstallForceList[] = "extensions.install.forcelist"; 40 const char kInstallForceList[] = "extensions.install.forcelist";
40 const char kLastChromeVersion[] = "extensions.last_chrome_version"; 41 const char kLastChromeVersion[] = "extensions.last_chrome_version";
41 const char kLastUpdateCheck[] = "extensions.autoupdate.last_check"; 42 const char kLastUpdateCheck[] = "extensions.autoupdate.last_check";
42 const char kNativeMessagingBlacklist[] = "native_messaging.blacklist"; 43 const char kNativeMessagingBlacklist[] = "native_messaging.blacklist";
43 const char kNativeMessagingWhitelist[] = "native_messaging.whitelist"; 44 const char kNativeMessagingWhitelist[] = "native_messaging.whitelist";
44 const char kNativeMessagingUserLevelHosts[] = 45 const char kNativeMessagingUserLevelHosts[] =
45 "native_messaging.user_level_hosts"; 46 "native_messaging.user_level_hosts";
46 const char kNextUpdateCheck[] = "extensions.autoupdate.next_check"; 47 const char kNextUpdateCheck[] = "extensions.autoupdate.next_check";
47 const char kStorageGarbageCollect[] = "extensions.storage.garbagecollect"; 48 const char kStorageGarbageCollect[] = "extensions.storage.garbagecollect";
48 const char kToolbar[] = "extensions.toolbar"; 49 const char kToolbar[] = "extensions.toolbar";
49 const char kToolbarSize[] = "extensions.toolbarsize"; 50 const char kToolbarSize[] = "extensions.toolbarsize";
50 51
51 const char kPrefPreferences[] = "preferences"; 52 const char kPrefPreferences[] = "preferences";
52 const char kPrefIncognitoPreferences[] = "incognito_preferences"; 53 const char kPrefIncognitoPreferences[] = "incognito_preferences";
53 const char kPrefRegularOnlyPreferences[] = "regular_only_preferences"; 54 const char kPrefRegularOnlyPreferences[] = "regular_only_preferences";
54 const char kPrefContentSettings[] = "content_settings"; 55 const char kPrefContentSettings[] = "content_settings";
55 const char kPrefIncognitoContentSettings[] = "incognito_content_settings"; 56 const char kPrefIncognitoContentSettings[] = "incognito_content_settings";
56 57
57 } // namespace pref_names 58 } // namespace pref_names
58 } // namespace extensions 59 } // namespace extensions
OLDNEW
« no previous file with comments | « extensions/browser/pref_names.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698