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

Unified Diff: src/isolate.cc

Issue 388783004: Do not expose all timer events to the API callback. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 5 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 | « src/ic.cc ('k') | src/log.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/isolate.cc
diff --git a/src/isolate.cc b/src/isolate.cc
index 1f5c1097eb23edd260bf77a61ef79ad2e0e99dd4..450e50d8a52c7f9a178f7650ebb6ea1bf944ba86 100644
--- a/src/isolate.cc
+++ b/src/isolate.cc
@@ -1878,9 +1878,9 @@ bool Isolate::Init(Deserializer* des) {
builtins_.SetUp(this, create_heap_objects);
if (FLAG_log_internal_timer_events) {
- set_event_logger(Logger::LogInternalEvents);
+ set_event_logger(Logger::DefaultTimerEventsLogger);
} else {
- set_event_logger(Logger::EmptyLogInternalEvents);
+ set_event_logger(Logger::EmptyTimerEventsLogger);
}
// Set default value if not yet set.
« no previous file with comments | « src/ic.cc ('k') | src/log.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698