diff options
Diffstat (limited to 'chrome/browser/component_updater/component_updater_service.h')
-rw-r--r-- | chrome/browser/component_updater/component_updater_service.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/chrome/browser/component_updater/component_updater_service.h b/chrome/browser/component_updater/component_updater_service.h index cf59ad2..abe1dc2 100644 --- a/chrome/browser/component_updater/component_updater_service.h +++ b/chrome/browser/component_updater/component_updater_service.h @@ -27,8 +27,6 @@ class DictionaryValue; // given to ComponentUpdateService::RegisterComponent(). class ComponentInstaller { public : - virtual ~ComponentInstaller() {} - // Called by the component updater on the UI thread when there was a // problem unpacking or verifying the component. |error| is a non-zero // value which is only meaninful to the component updater. @@ -40,6 +38,9 @@ class ComponentInstaller { // with all the unpacked CRX files. virtual bool Install(base::DictionaryValue* manifest, const FilePath& unpack_path) = 0; + + protected: + virtual ~ComponentInstaller() {} }; // Describes a particular component that can be installed or updated. This |