| Index: chrome/browser/extensions/extension_service.h
|
| diff --git a/chrome/browser/extensions/extension_service.h b/chrome/browser/extensions/extension_service.h
|
| index c326490a1a8cb6f32e3d039fe3a0dcb5e02b4897..08b31e6630c2f17e1a3e2cb7ca1baabfb7d01766 100644
|
| --- a/chrome/browser/extensions/extension_service.h
|
| +++ b/chrome/browser/extensions/extension_service.h
|
| @@ -121,7 +121,7 @@ class ExtensionServiceInterface : public syncer::SyncableService {
|
|
|
| virtual void UpdateExtensionBlacklist(
|
| const std::vector<std::string>& blacklist) = 0;
|
| - virtual void CheckAdminBlacklist() = 0;
|
| + virtual void CheckManagementPolicy() = 0;
|
|
|
| // Safe to call multiple times in a row.
|
| //
|
| @@ -413,10 +413,10 @@ class ExtensionService
|
| virtual void UpdateExtensionBlacklist(
|
| const std::vector<std::string>& blacklist) OVERRIDE;
|
|
|
| - // Go through each extension and unload those that the network admin has
|
| - // put on the blacklist (not to be confused with the Google-managed blacklist)
|
| - // set of extensions.
|
| - virtual void CheckAdminBlacklist() OVERRIDE;
|
| + // Go through each extension and unload those that are not allowed to run by
|
| + // management policy providers (ie. network admin and Google-managed
|
| + // blacklist).
|
| + virtual void CheckManagementPolicy() OVERRIDE;
|
|
|
| virtual void CheckForUpdatesSoon() OVERRIDE;
|
|
|
|
|