| Index: src/platform/update_engine/filesystem_copier_action_unittest.cc
|
| diff --git a/src/platform/update_engine/filesystem_copier_action_unittest.cc b/src/platform/update_engine/filesystem_copier_action_unittest.cc
|
| index 46c13a3690dccf9b7eb5ed9e4b36f6b63e779fa0..6d6f0adeeb739041dbb1128643fa92832a2006ee 100644
|
| --- a/src/platform/update_engine/filesystem_copier_action_unittest.cc
|
| +++ b/src/platform/update_engine/filesystem_copier_action_unittest.cc
|
| @@ -4,6 +4,7 @@
|
|
|
| #include <glib.h>
|
| #include <set>
|
| +#include <string>
|
| #include <vector>
|
| #include <gtest/gtest.h>
|
| #include "update_engine/filesystem_copier_action.h"
|
| @@ -13,6 +14,7 @@
|
| #include "update_engine/utils.h"
|
|
|
| using std::set;
|
| +using std::string;
|
| using std::vector;
|
|
|
| namespace chromeos_update_engine {
|
| @@ -32,7 +34,7 @@ class FilesystemCopierActionTest : public ::testing::Test {
|
| class FilesystemCopierActionTestDelegate : public ActionProcessorDelegate {
|
| public:
|
| FilesystemCopierActionTestDelegate() : ran_(false), success_(false) {}
|
| - void ProcessingDone(const ActionProcessor* processor) {
|
| + void ProcessingDone(const ActionProcessor* processor, bool success) {
|
| g_main_loop_quit(loop_);
|
| }
|
| void ActionCompleted(ActionProcessor* processor,
|
|
|