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

Unified Diff: src/platform/update_engine/action_processor.h

Issue 466036: AU: Beginnings of delta support (Closed)
Patch Set: Created 11 years 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
« no previous file with comments | « src/platform/update_engine/action_pipe.h ('k') | src/platform/update_engine/action_processor.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/platform/update_engine/action_processor.h
diff --git a/src/platform/update_engine/action_processor.h b/src/platform/update_engine/action_processor.h
index d4784772be837b16aabbcb32a93cef4c017f2d70..938a81d0f7233055e5b87fc9b8d28c49b42e155f 100644
--- a/src/platform/update_engine/action_processor.h
+++ b/src/platform/update_engine/action_processor.h
@@ -2,8 +2,8 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#ifndef UPDATE_ENGINE_ACTION_PROCESSOR_H__
-#define UPDATE_ENGINE_ACTION_PROCESSOR_H__
+#ifndef CHROMEOS_PLATFORM_UPDATE_ENGINE_ACTION_PROCESSOR_H__
+#define CHROMEOS_PLATFORM_UPDATE_ENGINE_ACTION_PROCESSOR_H__
#include <deque>
@@ -57,7 +57,7 @@ class ActionProcessor {
}
// Called by an action to notify processor that it's done. Caller passes self.
- void ActionComplete(const AbstractAction* actionptr, bool success);
+ void ActionComplete(AbstractAction* actionptr, bool success);
private:
// Actions that have not yet begun processing, in the order in which
@@ -87,11 +87,11 @@ class ActionProcessorDelegate {
// Called whenever an action has finished processing, either successfully
// or otherwise.
- virtual void ActionCompleted(const ActionProcessor* processor,
- const AbstractAction* action,
+ virtual void ActionCompleted(ActionProcessor* processor,
+ AbstractAction* action,
bool success) {}
};
} // namespace chromeos_update_engine
-#endif // UPDATE_ENGINE_ACTION_PROCESSOR_H__
+#endif // CHROMEOS_PLATFORM_UPDATE_ENGINE_ACTION_PROCESSOR_H__
« no previous file with comments | « src/platform/update_engine/action_pipe.h ('k') | src/platform/update_engine/action_processor.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698