| 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 cce0327b954bc381e990dbab0905bc3a4a890039..0e3202710adb167b0153ec34f18a4bea298b5d5d 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(base::Delete(main_path, true));
|
| + ASSERT_TRUE(base::DeleteFile(main_path, true));
|
| PathService::Get(base::DIR_LOCAL_APP_DATA, &path);
|
| base::FilePath alternate_path = path.Append(kAlternateChromeExePath);
|
| - ASSERT_TRUE(base::Delete(alternate_path, true));
|
| + ASSERT_TRUE(base::DeleteFile(alternate_path, true));
|
| }
|
|
|
| protected:
|
|
|