Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(5490)

Unified Diff: chrome/installer/util/delete_old_versions.h

Issue 2273113002: Delete old files after an update. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@harvester
Patch Set: Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/installer/util/delete_old_versions.h
diff --git a/chrome/installer/util/delete_old_versions.h b/chrome/installer/util/delete_old_versions.h
new file mode 100644
index 0000000000000000000000000000000000000000..5b5f4f671c03e4deea337b738bb191d5085954a7
--- /dev/null
+++ b/chrome/installer/util/delete_old_versions.h
@@ -0,0 +1,23 @@
+// Copyright 2016 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.
+
+#ifndef CHROME_INSTALLER_UTIL_DELETE_OLD_VERSIONS_H_
+#define CHROME_INSTALLER_UTIL_DELETE_OLD_VERSIONS_H_
+
+namespace base {
+class FilePath;
+}
+
+namespace installer {
+
+// Deletes files that belong to old versions of Chrome. chrome.exe,
+// new_chrome.exe and their associated version directories are never deleted.
+// Also, no file is deleted for a given version if a .exe or .dll file for that
+// version is in use. Returns true if no file that belong to an old version of
grt (UTC plus 2) 2016/08/25 11:24:47 nit: "...no files that belong...remain."
fdoray 2016/08/26 15:16:15 Done.
+// Chrome remains.
+bool DeleteOldVersions(const base::FilePath& install_dir);
+
+} // namespace installer
+
+#endif // CHROME_INSTALLER_UTIL_DELETE_OLD_VERSIONS_H_

Powered by Google App Engine
This is Rietveld 408576698