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

Unified Diff: chrome/browser/ui/webui/performance_monitor/performance_monitor_handler.cc

Issue 10987040: Fix CPM casting issue; refactor renderer crash events (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Nit fixes, latest master Created 8 years, 2 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
Index: chrome/browser/ui/webui/performance_monitor/performance_monitor_handler.cc
diff --git a/chrome/browser/ui/webui/performance_monitor/performance_monitor_handler.cc b/chrome/browser/ui/webui/performance_monitor/performance_monitor_handler.cc
index c4f6170fbc000f2fa413162e9d57663b8105bda6..c26b757c82524bd5cb4c8793bd22e505b90474f6 100644
--- a/chrome/browser/ui/webui/performance_monitor/performance_monitor_handler.cc
+++ b/chrome/browser/ui/webui/performance_monitor/performance_monitor_handler.cc
@@ -64,9 +64,9 @@ std::set<EventType> GetEventSetForCategory(EventCategory category) {
event_set.insert(EVENT_CHROME_UPDATE);
break;
case EVENT_CATEGORY_EXCEPTIONS:
- event_set.insert(EVENT_RENDERER_FREEZE);
+ event_set.insert(EVENT_RENDERER_HANG);
event_set.insert(EVENT_RENDERER_CRASH);
- event_set.insert(EVENT_KILLED_BY_OS_CRASH);
+ event_set.insert(EVENT_RENDERER_KILLED);
event_set.insert(EVENT_UNCLEAN_EXIT);
break;
default:

Powered by Google App Engine
This is Rietveld 408576698