summaryrefslogtreecommitdiffstats
path: root/chrome/test/file_test_utils.cc
diff options
context:
space:
mode:
authormunjal@chromium.org <munjal@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-05-29 21:08:14 +0000
committermunjal@chromium.org <munjal@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-05-29 21:08:14 +0000
commitf1a8760cc11a49cf1aca88c76712bc2d55a8f5ac (patch)
tree255902f572beac669f3efa7ffc86a6ea82b0e4d3 /chrome/test/file_test_utils.cc
parent6af916aa551e6d6ce44404ab8775da015bb6d533 (diff)
downloadchromium_src-f1a8760cc11a49cf1aca88c76712bc2d55a8f5ac.zip
chromium_src-f1a8760cc11a49cf1aca88c76712bc2d55a8f5ac.tar.gz
chromium_src-f1a8760cc11a49cf1aca88c76712bc2d55a8f5ac.tar.bz2
Clean-up temporary files/folders in firefox importer tests.
Review URL: http://codereview.chromium.org/115930 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@17238 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/test/file_test_utils.cc')
-rw-r--r--chrome/test/file_test_utils.cc13
1 files changed, 13 insertions, 0 deletions
diff --git a/chrome/test/file_test_utils.cc b/chrome/test/file_test_utils.cc
new file mode 100644
index 0000000..c781cfe
--- /dev/null
+++ b/chrome/test/file_test_utils.cc
@@ -0,0 +1,13 @@
+// Copyright (c) 2006-2009 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "chrome/test/file_test_utils.h"
+
+FileAutoDeleter::FileAutoDeleter(const FilePath& path)
+ : path_(path) {
+}
+
+FileAutoDeleter::~FileAutoDeleter() {
+ file_util::Delete(path_, true);
+}