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 #include "extensions/browser/extension_prefs.h" | 5 #include "extensions/browser/extension_prefs.h" |
6 | 6 |
7 #include <iterator> | 7 #include <iterator> |
8 | 8 |
9 #include "base/command_line.h" | 9 #include "base/command_line.h" |
10 #include "base/prefs/pref_notifier.h" | 10 #include "base/prefs/pref_notifier.h" |
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
71 // The count of how many times we prompted the user to acknowledge an | 71 // The count of how many times we prompted the user to acknowledge an |
72 // extension. | 72 // extension. |
73 const char kPrefAcknowledgePromptCount[] = "ack_prompt_count"; | 73 const char kPrefAcknowledgePromptCount[] = "ack_prompt_count"; |
74 | 74 |
75 // Indicates whether the user has acknowledged various types of extensions. | 75 // Indicates whether the user has acknowledged various types of extensions. |
76 const char kPrefExternalAcknowledged[] = "ack_external"; | 76 const char kPrefExternalAcknowledged[] = "ack_external"; |
77 const char kPrefBlacklistAcknowledged[] = "ack_blacklist"; | 77 const char kPrefBlacklistAcknowledged[] = "ack_blacklist"; |
78 const char kPrefWipeoutAcknowledged[] = "ack_wiped"; | 78 const char kPrefWipeoutAcknowledged[] = "ack_wiped"; |
79 const char kPrefSettingsBubbleAcknowledged[] = "ack_settings_bubble"; | 79 const char kPrefSettingsBubbleAcknowledged[] = "ack_settings_bubble"; |
80 const char kPrefNtpBubbleAcknowledged[] = "ack_ntp_bubble"; | 80 const char kPrefNtpBubbleAcknowledged[] = "ack_ntp_bubble"; |
81 const char kPrefProxyBubbleAcknowledged[] = "ack_proxy_bubble"; | |
82 | 81 |
83 // Indicates whether the external extension was installed during the first | 82 // Indicates whether the external extension was installed during the first |
84 // run of this profile. | 83 // run of this profile. |
85 const char kPrefExternalInstallFirstRun[] = "external_first_run"; | 84 const char kPrefExternalInstallFirstRun[] = "external_first_run"; |
86 | 85 |
87 // Indicates whether to show an install warning when the user enables. | 86 // Indicates whether to show an install warning when the user enables. |
88 const char kExtensionDidEscalatePermissions[] = "install_warning_on_enable"; | 87 const char kExtensionDidEscalatePermissions[] = "install_warning_on_enable"; |
89 | 88 |
90 // DO NOT USE, use kPrefDisableReasons instead. | 89 // DO NOT USE, use kPrefDisableReasons instead. |
91 // Indicates whether the extension was updated while it was disabled. | 90 // Indicates whether the extension was updated while it was disabled. |
(...skipping 657 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
749 } | 748 } |
750 | 749 |
751 void ExtensionPrefs::SetNtpOverriddenBubbleBeenAcknowledged( | 750 void ExtensionPrefs::SetNtpOverriddenBubbleBeenAcknowledged( |
752 const std::string& extension_id, | 751 const std::string& extension_id, |
753 bool value) { | 752 bool value) { |
754 UpdateExtensionPref(extension_id, | 753 UpdateExtensionPref(extension_id, |
755 kPrefNtpBubbleAcknowledged, | 754 kPrefNtpBubbleAcknowledged, |
756 value ? base::Value::CreateBooleanValue(value) : NULL); | 755 value ? base::Value::CreateBooleanValue(value) : NULL); |
757 } | 756 } |
758 | 757 |
759 bool ExtensionPrefs::HasProxyOverriddenBubbleBeenAcknowledged( | |
760 const std::string& extension_id) { | |
761 return ReadPrefAsBooleanAndReturn(extension_id, kPrefProxyBubbleAcknowledged); | |
762 } | |
763 | |
764 void ExtensionPrefs::SetProxyOverriddenBubbleBeenAcknowledged( | |
765 const std::string& extension_id, | |
766 bool value) { | |
767 UpdateExtensionPref(extension_id, | |
768 kPrefProxyBubbleAcknowledged, | |
769 value ? base::Value::CreateBooleanValue(value) : NULL); | |
770 } | |
771 | |
772 bool ExtensionPrefs::SetAlertSystemFirstRun() { | 758 bool ExtensionPrefs::SetAlertSystemFirstRun() { |
773 if (prefs_->GetBoolean(pref_names::kAlertsInitialized)) { | 759 if (prefs_->GetBoolean(pref_names::kAlertsInitialized)) { |
774 return true; | 760 return true; |
775 } | 761 } |
776 prefs_->SetBoolean(pref_names::kAlertsInitialized, true); | 762 prefs_->SetBoolean(pref_names::kAlertsInitialized, true); |
777 return false; | 763 return false; |
778 } | 764 } |
779 | 765 |
780 bool ExtensionPrefs::ExtensionsBlacklistedByDefault() const { | 766 bool ExtensionPrefs::ExtensionsBlacklistedByDefault() const { |
781 return admin_policy::BlacklistedByDefault( | 767 return admin_policy::BlacklistedByDefault( |
(...skipping 1446 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2228 extension_pref_value_map_->RegisterExtension( | 2214 extension_pref_value_map_->RegisterExtension( |
2229 extension_id, install_time, is_enabled, is_incognito_enabled); | 2215 extension_id, install_time, is_enabled, is_incognito_enabled); |
2230 | 2216 |
2231 FOR_EACH_OBSERVER( | 2217 FOR_EACH_OBSERVER( |
2232 ExtensionPrefsObserver, | 2218 ExtensionPrefsObserver, |
2233 observer_list_, | 2219 observer_list_, |
2234 OnExtensionRegistered(extension_id, install_time, is_enabled)); | 2220 OnExtensionRegistered(extension_id, install_time, is_enabled)); |
2235 } | 2221 } |
2236 | 2222 |
2237 } // namespace extensions | 2223 } // namespace extensions |
OLD | NEW |