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

Unified Diff: chrome/install_static/install_util.cc

Issue 2730283002: Cleanups in the wake of various metrics refactorings. (Closed)
Patch Set: Created 3 years, 9 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/install_static/install_util.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/install_static/install_util.cc
diff --git a/chrome/install_static/install_util.cc b/chrome/install_static/install_util.cc
index 4ee841e22b4c24c466886e71e8d34fb49b55434a..073f45ff27debc187e05cac304aaa70eb889dcd3 100644
--- a/chrome/install_static/install_util.cc
+++ b/chrome/install_static/install_util.cc
@@ -61,9 +61,6 @@ constexpr wchar_t kRegValueAp[] = L"ap";
constexpr wchar_t kRegValueUsageStats[] = L"usagestats";
constexpr wchar_t kMetricsReportingEnabled[] = L"MetricsReportingEnabled";
-constexpr wchar_t kBrowserCrashDumpMetricsSubKey[] =
- L"\\BrowserCrashDumpAttempts";
-
void Trace(const wchar_t* format_string, ...) {
static const int kMaxLogBufferSize = 1024;
static wchar_t buffer[kMaxLogBufferSize] = {};
@@ -529,10 +526,6 @@ std::wstring GetChromeChannelName() {
return InstallDetails::Get().channel();
}
-std::wstring GetBrowserCrashDumpAttemptsRegistryPath() {
- return GetChromeInstallRegistryPath().append(kBrowserCrashDumpMetricsSubKey);
-}
-
bool MatchPattern(const std::wstring& source, const std::wstring& pattern) {
assert(pattern.find(L"**") == std::wstring::npos);
return MatchPatternImpl(source, pattern, 0, 0);
« no previous file with comments | « chrome/install_static/install_util.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698