| Index: filesystem_copier_action_unittest.cc | 
| diff --git a/filesystem_copier_action_unittest.cc b/filesystem_copier_action_unittest.cc | 
| index 03aa86aa16996ddf307c5cc839b01c794803060c..f82097eb7388176e0bc2ae5fbe7b467e75f757a1 100644 | 
| --- a/filesystem_copier_action_unittest.cc | 
| +++ b/filesystem_copier_action_unittest.cc | 
| @@ -1,4 +1,4 @@ | 
| -// Copyright (c) 2010 The Chromium Authors. All rights reserved. | 
| +// Copyright (c) 2010 The Chromium OS Authors. All rights reserved. | 
| // Use of this source code is governed by a BSD-style license that can be | 
| // found in the LICENSE file. | 
|  | 
| @@ -231,7 +231,7 @@ TEST_F(FilesystemCopierActionTest, FullUpdateTest) { | 
|  | 
| ObjectFeederAction<InstallPlan> feeder_action; | 
| const char* kUrl = "http://some/url"; | 
| -  InstallPlan install_plan(true, kUrl, 0, "", "", ""); | 
| +  InstallPlan install_plan(true, false, kUrl, 0, "", "", ""); | 
| feeder_action.set_obj(install_plan); | 
| FilesystemCopierAction copier_action(false); | 
| ObjectCollectorAction<InstallPlan> collector_action; | 
| @@ -256,7 +256,13 @@ TEST_F(FilesystemCopierActionTest, NonExistentDriveTest) { | 
| processor.set_delegate(&delegate); | 
|  | 
| ObjectFeederAction<InstallPlan> feeder_action; | 
| -  InstallPlan install_plan(false, "", 0, "", "/no/such/file", "/no/such/file"); | 
| +  InstallPlan install_plan(false, | 
| +                           false, | 
| +                           "", | 
| +                           0, | 
| +                           "", | 
| +                           "/no/such/file", | 
| +                           "/no/such/file"); | 
| feeder_action.set_obj(install_plan); | 
| FilesystemCopierAction copier_action(false); | 
| ObjectCollectorAction<InstallPlan> collector_action; | 
|  |