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

Unified Diff: chrome/browser/extensions/external_policy_extension_loader.cc

Issue 5742008: Clean up threading model of external extension providers (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: " Created 9 years, 12 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/extensions/external_policy_extension_loader.cc
diff --git a/chrome/browser/extensions/external_policy_extension_loader.cc b/chrome/browser/extensions/external_policy_extension_loader.cc
new file mode 100644
index 0000000000000000000000000000000000000000..71e221495fdf2caebc6338323cde530241451e6d
--- /dev/null
+++ b/chrome/browser/extensions/external_policy_extension_loader.cc
@@ -0,0 +1,101 @@
+// Copyright (c) 2010 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "chrome/browser/extensions/external_policy_extension_loader.h"
+
+#include "base/logging.h"
+#include "base/values.h"
+#include "chrome/common/extensions/extension.h"
+#include "chrome/common/pref_names.h"
+#include "chrome/browser/browser_thread.h"
+#include "chrome/browser/prefs/pref_service.h"
+#include "chrome/browser/profiles/profile.h"
+#include "googleurl/src/gurl.h"
+
+namespace {
+
+// Check an extension ID and an URL to be syntactically correct.
+bool CheckExtension(std::string id, std::string update_url) {
+ GURL url(update_url);
+ if (!url.is_valid()) {
+ LOG(WARNING) << "Policy specifies invalid update URL for external "
+ << "extension: " << update_url;
+ return false;
+ }
+ if (!Extension::IdIsValid(id)) {
+ LOG(WARNING) << "Policy specifies invalid ID for external "
+ << "extension: " << id;
+ return false;
+ }
+ return true;
+}
+
+} // namespace
+
+ExternalPolicyExtensionLoader::ExternalPolicyExtensionLoader(
+ Profile* profile)
+ : profile_(profile) {
jochen (gone - plz use gerrit) 2011/01/04 12:38:01 only indent 4 spaces
gfeher 2011/01/04 23:37:09 Done.
+ pref_change_registrar_.Init(profile_->GetPrefs());
+ pref_change_registrar_.Add(prefs::kExtensionInstallForceList, this);
+ notification_registrar_.Add(this,
+ NotificationType::PROFILE_DESTROYED,
+ Source<Profile>(profile_));
+}
+
+void ExternalPolicyExtensionLoader::Load() {
+ const ListValue* forcelist =
+ profile_->GetPrefs()->GetList(prefs::kExtensionInstallForceList);
+ DictionaryValue* result = new DictionaryValue();
+ if (forcelist != NULL) {
+ std::string extension_desc;
+ for (ListValue::const_iterator it = forcelist->begin();
+ it != forcelist->end(); ++it) {
+ if (!(*it)->GetAsString(&extension_desc)) {
+ LOG(WARNING) << "Failed to read forcelist string.";
+ } else {
+ // Each string item of the list has the following form:
+ // extension_id_code;extension_update_url
+ // The update URL might also contain semicolons.
+ size_t pos = extension_desc.find(';');
+ std::string id = extension_desc.substr(0, pos);
+ std::string update_url = extension_desc.substr(pos+1);
+ if (CheckExtension(id, update_url)) {
+ result->SetString(id + ".external_update_url", update_url);
+ }
+ }
+ }
+ }
+ prefs_.reset(result);
+ LoadFinished();
+}
+
+void ExternalPolicyExtensionLoader::Observe(
+ NotificationType type,
+ const NotificationSource& source,
+ const NotificationDetails& details) {
+ if (profile_ == NULL) return;
+ switch (type.value) {
+ case NotificationType::PREF_CHANGED: {
+ if (Source<PrefService>(source).ptr() == profile_->GetPrefs()) {
+ std::string* pref_name = Details<std::string>(details).ptr();
+ if (*pref_name == prefs::kExtensionInstallForceList) {
+ StartLoading();
+ } else {
+ NOTREACHED() << "Unexpected preference name.";
+ }
+ }
+ break;
+ }
+ case NotificationType::PROFILE_DESTROYED: {
+ if (Source<Profile>(source).ptr() == profile_) {
+ notification_registrar_.RemoveAll();
+ pref_change_registrar_.RemoveAll();
+ profile_ = NULL;
+ }
+ break;
+ }
+ default:
+ NOTREACHED() << "Unexpected notification type.";
+ }
+}

Powered by Google App Engine
This is Rietveld 408576698