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

Unified Diff: chrome/common/extensions/chrome_extensions_client.cc

Issue 1059383002: Disable dev channel crashes for Extension JS exceptions. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/extensions/chrome_extensions_client.cc
diff --git a/chrome/common/extensions/chrome_extensions_client.cc b/chrome/common/extensions/chrome_extensions_client.cc
index d1068224913a5ddcb8631a5002009baa59324526..bb2f0da932b24f5eb363cb9fe744d73d3d9b240c 100644
--- a/chrome/common/extensions/chrome_extensions_client.cc
+++ b/chrome/common/extensions/chrome_extensions_client.cc
@@ -305,8 +305,8 @@ void ChromeExtensionsClient::RegisterAPISchemaResources(
}
bool ChromeExtensionsClient::ShouldSuppressFatalErrors() const {
- // Suppress fatal errors only on beta and stable channels.
- return GetCurrentChannel() > chrome::VersionInfo::CHANNEL_DEV;
+ // Suppress fatal on all release branches.
+ return GetCurrentChannel() > chrome::VersionInfo::CHANNEL_CANARY;
}
std::string ChromeExtensionsClient::GetWebstoreBaseURL() const {
« 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