#include "chrome/browser/media/webrtc/webrtc_event_log_manager_local.h"
#include "base/files/file_util.h"
#include "base/i18n/time_formatting.h"
#include "base/logging.h"
#include "base/strings/string_number_conversions.h"
#include "base/strings/string_util.h"
#include "base/strings/stringprintf.h"
#include "base/time/time.h"
#include "build/build_config.h"
#include "content/public/browser/browser_thread.h"
#if BUILDFLAG(IS_WIN)
#define NumberToStringType …
#else
#define NumberToStringType …
#endif
namespace webrtc_event_logging {
#if BUILDFLAG(IS_ANDROID)
const size_t kDefaultMaxLocalLogFileSizeBytes = 10000000;
const size_t kMaxNumberLocalWebRtcEventLogFiles = 3;
#else
const size_t kDefaultMaxLocalLogFileSizeBytes = …;
const size_t kMaxNumberLocalWebRtcEventLogFiles = …;
#endif
WebRtcLocalEventLogManager::WebRtcLocalEventLogManager(
WebRtcLocalEventLogsObserver* observer)
: … { … }
WebRtcLocalEventLogManager::~WebRtcLocalEventLogManager() { … }
bool WebRtcLocalEventLogManager::OnPeerConnectionAdded(
const PeerConnectionKey& key) { … }
bool WebRtcLocalEventLogManager::OnPeerConnectionRemoved(
const PeerConnectionKey& key) { … }
bool WebRtcLocalEventLogManager::EnableLogging(const base::FilePath& base_path,
size_t max_file_size_bytes) { … }
bool WebRtcLocalEventLogManager::DisableLogging() { … }
bool WebRtcLocalEventLogManager::EventLogWrite(const PeerConnectionKey& key,
const std::string& message) { … }
void WebRtcLocalEventLogManager::RenderProcessHostExitedDestroyed(
int render_process_id) { … }
void WebRtcLocalEventLogManager::SetClockForTesting(base::Clock* clock) { … }
void WebRtcLocalEventLogManager::StartLogFile(const PeerConnectionKey& key) { … }
WebRtcLocalEventLogManager::LogFilesMap::iterator
WebRtcLocalEventLogManager::CloseLogFile(LogFilesMap::iterator it) { … }
base::FilePath WebRtcLocalEventLogManager::GetFilePath(
const base::FilePath& base_path,
const PeerConnectionKey& key) const { … }
}