| Index: chrome/browser/component_updater/component_updater_service.h
|
| diff --git a/chrome/browser/component_updater/component_updater_service.h b/chrome/browser/component_updater/component_updater_service.h
|
| index 22053cc4f9f1beae71afb729f02f560f24ec3953..75c040ed3ada172ebde43a260212f51564201f86 100644
|
| --- a/chrome/browser/component_updater/component_updater_service.h
|
| +++ b/chrome/browser/component_updater/component_updater_service.h
|
| @@ -29,7 +29,9 @@ namespace content {
|
| class ResourceThrottle;
|
| }
|
|
|
| +namespace component_updater {
|
| class ComponentPatcher;
|
| +}
|
|
|
| // Component specific installers must derive from this class and implement
|
| // OnUpdateError() and Install(). A valid instance of this class must be
|
| @@ -177,7 +179,7 @@ class ComponentUpdateService {
|
| virtual bool InProcess() = 0;
|
| // Creates a new ComponentPatcher in a platform-specific way. This is useful
|
| // for dependency injection.
|
| - virtual ComponentPatcher* CreateComponentPatcher() = 0;
|
| + virtual component_updater::ComponentPatcher* CreateComponentPatcher() = 0;
|
| // True means that this client can handle delta updates.
|
| virtual bool DeltasEnabled() const = 0;
|
| };
|
|
|