| 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);
|
|
|