| Index: cloud_print/virtual_driver/win/port_monitor/port_monitor_unittest.cc
|
| diff --git a/cloud_print/virtual_driver/win/port_monitor/port_monitor_unittest.cc b/cloud_print/virtual_driver/win/port_monitor/port_monitor_unittest.cc
|
| index 1ab8a366b14159240c460c59c9299fe11e257abb..985b386c2c3c0ece5836b3b2d9829e059904045d 100644
|
| --- a/cloud_print/virtual_driver/win/port_monitor/port_monitor_unittest.cc
|
| +++ b/cloud_print/virtual_driver/win/port_monitor/port_monitor_unittest.cc
|
| @@ -74,10 +74,10 @@ class PortMonitorTest : public testing::Test {
|
| base::FilePath path;
|
| PathService::Get(base::DIR_LOCAL_APP_DATA, &path);
|
| base::FilePath main_path = path.Append(kChromeExePath);
|
| - ASSERT_TRUE(file_util::Delete(main_path, true));
|
| + ASSERT_TRUE(base::Delete(main_path, true));
|
| PathService::Get(base::DIR_LOCAL_APP_DATA, &path);
|
| base::FilePath alternate_path = path.Append(kAlternateChromeExePath);
|
| - ASSERT_TRUE(file_util::Delete(alternate_path, true));
|
| + ASSERT_TRUE(base::Delete(alternate_path, true));
|
| }
|
|
|
| protected:
|
|
|