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

Unified Diff: chrome/browser/ui/webui/performance_monitor/web_ui_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: Created 8 years, 3 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/web_ui_handler.cc
diff --git a/chrome/browser/ui/webui/performance_monitor/web_ui_handler.cc b/chrome/browser/ui/webui/performance_monitor/web_ui_handler.cc
index 16c4085c181f814a700baf196f740c2178367aff..4f9eec472ad793c3b1fcd4d20d15a31be9654a2b 100644
--- a/chrome/browser/ui/webui/performance_monitor/web_ui_handler.cc
+++ b/chrome/browser/ui/webui/performance_monitor/web_ui_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