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

Unified Diff: chrome/browser/media/webrtc_log_util.h

Issue 2307083002: Cleanup: move WebRTC related files from chrome/browser/media to chrome/browser/media/webrtc/ (Closed)
Patch Set: Removed file wrongly resuscitated during rebase Created 4 years, 3 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
« no previous file with comments | « chrome/browser/media/webrtc_log_uploader_unittest.cc ('k') | chrome/browser/media/webrtc_log_util.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/media/webrtc_log_util.h
diff --git a/chrome/browser/media/webrtc_log_util.h b/chrome/browser/media/webrtc_log_util.h
deleted file mode 100644
index 1bc1f95590325b2cfe5989cb7056f9cb1a8b1fe1..0000000000000000000000000000000000000000
--- a/chrome/browser/media/webrtc_log_util.h
+++ /dev/null
@@ -1,30 +0,0 @@
-// Copyright 2014 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_BROWSER_MEDIA_WEBRTC_LOG_UTIL_H_
-#define CHROME_BROWSER_MEDIA_WEBRTC_LOG_UTIL_H_
-
-#include "base/files/file_path.h"
-#include "base/time/time.h"
-
-class WebRtcLogUtil {
- public:
- // Deletes logs files older that 5 days. Updates the log file list. Must be
- // called on the FILE thread.
- static void DeleteOldWebRtcLogFiles(const base::FilePath& log_dir);
-
- // Deletes logs files older that 5 days and logs younger than
- // |delete_begin_time|. Updates the log file list. If |delete_begin_time| is
- // base::time::Max(), no recent logs will be deleted, and the function is
- // equal to DeleteOldWebRtcLogFiles(). Must be called on the FILE thread.
- static void DeleteOldAndRecentWebRtcLogFiles(
- const base::FilePath& log_dir,
- const base::Time& delete_begin_time);
-
- // Calls DeleteOldWebRtcLogFiles() for all profiles. Must be called on the UI
- // thread.
- static void DeleteOldWebRtcLogFilesForAllProfiles();
-};
-
-#endif // CHROME_BROWSER_MEDIA_WEBRTC_LOG_UTIL_H_
« no previous file with comments | « chrome/browser/media/webrtc_log_uploader_unittest.cc ('k') | chrome/browser/media/webrtc_log_util.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698