From 6b75ec3c19f7a05c9104ee4b1edf2074af88d5b9 Mon Sep 17 00:00:00 2001 From: "lzheng@chromium.org" Date: Fri, 14 Aug 2009 06:37:18 +0000 Subject: The change has the followings: 1. Auto-updating of extension blacklist. 2. Handle extensions in the blacklist. If an extension is in the blacklist, a. browser will not load the extension at start time; b. browser will unload the extension at running time; c. browser will not install the extension; BUG=12118 TEST=Verify behavior described above works (they should be covered in the unittests in this change). Review URL: http://codereview.chromium.org/165164 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@23423 0039d316-1c4b-4281-b951-d872f2087c98 --- chrome/common/pref_names.cc | 3 +++ 1 file changed, 3 insertions(+) (limited to 'chrome/common/pref_names.cc') diff --git a/chrome/common/pref_names.cc b/chrome/common/pref_names.cc index 2414dc1..c86671f 100644 --- a/chrome/common/pref_names.cc +++ b/chrome/common/pref_names.cc @@ -532,6 +532,9 @@ const wchar_t kLastExtensionsUpdateCheck[] = L"extensions.autoupdate.last_check"; const wchar_t kNextExtensionsUpdateCheck[] = L"extensions.autoupdate.next_check"; +// Version number of last blacklist check +const wchar_t kExtensionBlacklistUpdateVersion[] = + L"extensions.blacklistupdate.version"; // New Tab Page URLs that should not be shown as most visited thumbnails. const wchar_t kNTPMostVisitedURLsBlacklist[] = L"ntp.most_visited_blacklist"; -- cgit v1.1