summaryrefslogtreecommitdiff
path: root/action_processor.h
diff options
context:
space:
mode:
authorAndrew de los Reyes <opensource@google.com>2009-12-10 19:01:36 -0800
committerAndrew de los Reyes <opensource@google.com>2009-12-10 19:01:36 -0800
commit4fe15d017c145aca449c2248420c1b4ec8c23758 (patch)
tree62d7c0cc4b73fdaae0ea34756650cfd3237d310f /action_processor.h
parent970bb28905b44bf9f2cb986bb412ecda1095b0b1 (diff)
AU: Try delta updates first, then full updates
Also, some bug fixes. Review URL: http://codereview.chromium.org/492008
Diffstat (limited to 'action_processor.h')
-rw-r--r--action_processor.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/action_processor.h b/action_processor.h
index 938a81d0..8311b8a6 100644
--- a/action_processor.h
+++ b/action_processor.h
@@ -78,8 +78,9 @@ class ActionProcessor {
class ActionProcessorDelegate {
public:
// Called when all processing in an ActionProcessor has completed. A pointer
- // to the ActionProcessor is passed.
- virtual void ProcessingDone(const ActionProcessor* processor) {}
+ // to the ActionProcessor is passed. success is true iff all actions
+ // completed successfully
+ virtual void ProcessingDone(const ActionProcessor* processor, bool success) {}
// Called when processing has stopped. Does not mean that all Actions have
// completed. If/when all Actions complete, ProcessingDone() will be called.