Commit f4d633ee authored by Will Harris's avatar Will Harris Committed by Nico Weber

Fix compile error in StartupTabProviderImpl

Error happens after https://chromium-review.googlesource.com/c/chromium/src/+/1884757/2#message-b121b34981a18b718765187998ac1e4dc2b61005
BUG=1018977

Change-Id: Ic7090d5325102798522fd4ae6f7edffd90a8b471
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1885177Reviewed-by: default avatarNico Weber <thakis@chromium.org>
Reviewed-by: default avatarRobert Sesek <rsesek@chromium.org>
Commit-Queue: Will Harris <wfh@chromium.org>
Commit-Queue: Robert Sesek <rsesek@chromium.org>
Auto-Submit: Will Harris <wfh@chromium.org>
Cr-Commit-Position: refs/heads/master@{#710091}
parent 6c9ca74a
...@@ -245,7 +245,7 @@ void StartupTabProviderImpl::AddIncompatibleApplicationsUrl(StartupTabs* tabs) { ...@@ -245,7 +245,7 @@ void StartupTabProviderImpl::AddIncompatibleApplicationsUrl(StartupTabs* tabs) {
#if defined(OS_WIN) && BUILDFLAG(GOOGLE_CHROME_BRANDING) #if defined(OS_WIN) && BUILDFLAG(GOOGLE_CHROME_BRANDING)
UMA_HISTOGRAM_BOOLEAN("IncompatibleApplicationsPage.AddedPostCrash", true); UMA_HISTOGRAM_BOOLEAN("IncompatibleApplicationsPage.AddedPostCrash", true);
GURL url(chrome::kChromeUISettingsURL); GURL url(chrome::kChromeUISettingsURL);
tabs->emplace_back(url.Resolve("incompatibleApplications", false); tabs->emplace_back(url.Resolve("incompatibleApplications"), false);
#endif // defined(OS_WIN) && BUILDFLAG(GOOGLE_CHROME_BRANDING) #endif // defined(OS_WIN) && BUILDFLAG(GOOGLE_CHROME_BRANDING)
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment