| Index: chrome/browser/printing/printing_layout_browsertest.cc
|
| diff --git a/chrome/browser/printing/printing_layout_browsertest.cc b/chrome/browser/printing/printing_layout_browsertest.cc
|
| index 16c53e722a39b7ddf369be4ac7ea290ffb8a10d5..4e4f6514401257d5f168fa3a6e5eb890b99cebb5 100644
|
| --- a/chrome/browser/printing/printing_layout_browsertest.cc
|
| +++ b/chrome/browser/printing/printing_layout_browsertest.cc
|
| @@ -53,7 +53,7 @@ class PrintingLayoutTest : public PrintingTest<InProcessBrowserTest>,
|
|
|
| virtual void TearDown() OVERRIDE {
|
| InProcessBrowserTest::TearDown();
|
| - base::Delete(emf_path_, true);
|
| + base::DeleteFile(emf_path_, true);
|
| }
|
|
|
| virtual void SetUpCommandLine(CommandLine* command_line) OVERRIDE {
|
| @@ -221,7 +221,7 @@ class PrintingLayoutTest : public PrintingTest<InProcessBrowserTest>,
|
| "\" when looking for \"" << verification_name << "\"";
|
| prn_file = file.value();
|
| found_prn = true;
|
| - base::Delete(file, false);
|
| + base::DeleteFile(file, false);
|
| continue;
|
| }
|
| EXPECT_TRUE(false);
|
|
|