| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CHROME_BROWSER_MEDIA_WEBRTC_LOG_UTIL_H_ | 5 #ifndef CHROME_BROWSER_MEDIA_WEBRTC_LOG_UTIL_H_ |
| 6 #define CHROME_BROWSER_MEDIA_WEBRTC_LOG_UTIL_H_ | 6 #define CHROME_BROWSER_MEDIA_WEBRTC_LOG_UTIL_H_ |
| 7 | 7 |
| 8 #include "base/files/file_path.h" | 8 namespace base { |
| 9 #include "base/time/time.h" | 9 class FilePath; |
| 10 class Time; |
| 11 } |
| 10 | 12 |
| 11 class WebRtcLogUtil { | 13 class WebRtcLogUtil { |
| 12 public: | 14 public: |
| 13 // Deletes logs files older that 5 days. Updates the log file list. Must be | 15 // Deletes logs files older that 5 days. Updates the log file list. Must be |
| 14 // called on the FILE thread. | 16 // called on a thread that allows IO. |
| 15 static void DeleteOldWebRtcLogFiles(const base::FilePath& log_dir); | 17 static void DeleteOldWebRtcLogFiles(const base::FilePath& log_dir); |
| 16 | 18 |
| 17 // Deletes logs files older that 5 days and logs younger than | 19 // Deletes logs files older that 5 days and logs younger than |
| 18 // |delete_begin_time|. Updates the log file list. If |delete_begin_time| is | 20 // |delete_begin_time|. Updates the log file list. If |delete_begin_time| is |
| 19 // base::time::Max(), no recent logs will be deleted, and the function is | 21 // base::time::Max(), no recent logs will be deleted, and the function is |
| 20 // equal to DeleteOldWebRtcLogFiles(). Must be called on the FILE thread. | 22 // equal to DeleteOldWebRtcLogFiles(). Must be called on a thread that allows |
| 23 // IO. |
| 21 static void DeleteOldAndRecentWebRtcLogFiles( | 24 static void DeleteOldAndRecentWebRtcLogFiles( |
| 22 const base::FilePath& log_dir, | 25 const base::FilePath& log_dir, |
| 23 const base::Time& delete_begin_time); | 26 const base::Time& delete_begin_time); |
| 24 | 27 |
| 25 // Calls DeleteOldWebRtcLogFiles() for all profiles. Must be called on the UI | 28 // Calls DeleteOldWebRtcLogFiles() for all profiles. Must be called on the UI |
| 26 // thread. | 29 // thread. |
| 27 static void DeleteOldWebRtcLogFilesForAllProfiles(); | 30 static void DeleteOldWebRtcLogFilesForAllProfiles(); |
| 28 }; | 31 }; |
| 29 | 32 |
| 30 #endif // CHROME_BROWSER_MEDIA_WEBRTC_LOG_UTIL_H_ | 33 #endif // CHROME_BROWSER_MEDIA_WEBRTC_LOG_UTIL_H_ |
| OLD | NEW |