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

Unified Diff: chrome/browser/chromeos/chrome_browser_main_chromeos.cc

Issue 2699543002: cros: Turn on close() tracking on dev (Closed)
Patch Set: update comments Created 3 years, 10 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/chromeos/chrome_browser_main_chromeos.cc
diff --git a/chrome/browser/chromeos/chrome_browser_main_chromeos.cc b/chrome/browser/chromeos/chrome_browser_main_chromeos.cc
index dff8332fdd420c5cf34b5d3e200e4faa1a295cbf..7410bebb0341d96c2a575222ca15cb610a167125 100644
--- a/chrome/browser/chromeos/chrome_browser_main_chromeos.cc
+++ b/chrome/browser/chromeos/chrome_browser_main_chromeos.cc
@@ -369,10 +369,10 @@ void ChromeBrowserMainPartsChromeos::PreEarlyInitialization() {
memory_kills_monitor_ = base::MakeUnique<memory::MemoryKillsMonitor::Handle>(
memory::MemoryKillsMonitor::StartMonitoring());
- // Enable libc close tracking in browser process on unknown/canary channel for
- // http://crbug.com/660960.
+ // Crash on libc double-close() for http://crbug.com/660960.
// TODO(xiyuan): Remove this.
- if (chrome::GetChannel() == version_info::Channel::CANARY ||
+ if (chrome::GetChannel() == version_info::Channel::DEV ||
+ chrome::GetChannel() == version_info::Channel::CANARY ||
chrome::GetChannel() == version_info::Channel::UNKNOWN) {
chromeos::InitCloseTracking();
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698