diff --git a/libcef/common/crash_reporter_client.cc b/libcef/common/crash_reporter_client.cc index c6d91d258..7b89c9139 100644 --- a/libcef/common/crash_reporter_client.cc +++ b/libcef/common/crash_reporter_client.cc @@ -631,11 +631,6 @@ bool CefCrashReporterClient::GetCrashDumpLocation(std::wstring* crash_dir) { return GetDefaultCrashDumpLocation(crash_dir, base::UTF8ToWide(app_name_)); } -bool CefCrashReporterClient::GetCrashMetricsLocation( - std::wstring* metrics_dir) { - return GetDefaultUserDataDirectory(metrics_dir, base::UTF8ToWide(app_name_)); -} - #elif BUILDFLAG(IS_POSIX) void CefCrashReporterClient::GetProductNameAndVersion(const char** product_name, diff --git a/libcef/common/crash_reporter_client.h b/libcef/common/crash_reporter_client.h index 61d6899ef..6e8a3ef39 100644 --- a/libcef/common/crash_reporter_client.h +++ b/libcef/common/crash_reporter_client.h @@ -49,7 +49,6 @@ class CefCrashReporterClient : public crash_reporter::CrashReporterClient { std::wstring* special_build, std::wstring* channel_name) override; bool GetCrashDumpLocation(std::wstring* crash_dir) override; - bool GetCrashMetricsLocation(std::wstring* metrics_dir) override; #elif BUILDFLAG(IS_POSIX) void GetProductNameAndVersion(const char** product_name, const char** version) override;