Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(805)

Unified Diff: chrome/browser/component_updater/component_updater_service.h

Issue 25883006: Support asynchronous patching operations in the component updater. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@tests
Patch Set: sorin@, cpu@ review Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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;
};

Powered by Google App Engine
This is Rietveld 408576698