| Index: chrome/browser/component_updater/component_updater_configurator.h
|
| diff --git a/chrome/browser/component_updater/component_updater_configurator.h b/chrome/browser/component_updater/component_updater_configurator.h
|
| index 04c31854500a52e597945fe1074400e6b427a229..5a51914c67b111631196ab4f4763321f6850c137 100644
|
| --- a/chrome/browser/component_updater/component_updater_configurator.h
|
| +++ b/chrome/browser/component_updater/component_updater_configurator.h
|
| @@ -24,6 +24,8 @@ class URLRequestContextGetter;
|
|
|
| namespace component_updater {
|
|
|
| +class DeltaUpdateOpFactory;
|
| +
|
| // Controls the component updater behavior.
|
| class Configurator {
|
| public:
|
| @@ -84,8 +86,9 @@ class Configurator {
|
| // The source of contexts for all the url requests.
|
| virtual net::URLRequestContextGetter* RequestContext() const = 0;
|
|
|
| - // True means that all ops are performed in this process.
|
| - virtual bool InProcess() const = 0;
|
| + // Returns a new DeltaUpdateOpFactory. May be in-process or out-of-process,
|
| + // depending on implementation.
|
| + virtual DeltaUpdateOpFactory* CreateDeltaUpdateOpFactory() const = 0;
|
|
|
| // True means that this client can handle delta updates.
|
| virtual bool DeltasEnabled() const = 0;
|
|
|