| Index: chrome/browser/extensions/extension_service.h
|
| diff --git a/chrome/browser/extensions/extension_service.h b/chrome/browser/extensions/extension_service.h
|
| index 2473216742e8bd98d4c2a705d7048f58c94c6ff2..8c9ee715b97c2b2a353108b64810375d82f6db41 100644
|
| --- a/chrome/browser/extensions/extension_service.h
|
| +++ b/chrome/browser/extensions/extension_service.h
|
| @@ -195,12 +195,15 @@ class ExtensionService
|
| // Initialize and start all installed extensions.
|
| void Init();
|
|
|
| - // Attempts to verify all extensions using the InstallVerifier.
|
| - void VerifyAllExtensions();
|
| + // Attempts to verify all extensions using the InstallVerifier. The
|
| + // |bootstrap| parameter indicates whether we're doing this because the
|
| + // InstallVerifier needed to be bootstrapped (otherwise it's for another
|
| + // reason, e.g. extension install/uninstall).
|
| + void VerifyAllExtensions(bool bootstrap);
|
|
|
| // Once the verifier work is finished, we may want to re-check management
|
| // policy if |success| indicates the verifier got a new signature back.
|
| - void FinishVerifyAllExtensions(bool success);
|
| + void FinishVerifyAllExtensions(bool bootstrap, bool success);
|
|
|
| // Called when the associated Profile is going to be destroyed.
|
| void Shutdown();
|
|
|