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

Unified Diff: test/cctest/test-api.cc

Issue 827993003: Integrate Chrome tracing with V8 (WIP) (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Cleanup Created 5 years, 11 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/tracing/trace-event.h ('k') | tools/gyp/v8.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/cctest/test-api.cc
diff --git a/test/cctest/test-api.cc b/test/cctest/test-api.cc
index 5c8584d0f5f4b90013b337d92fd377bc441cbcfc..1f49bf0a0d7e76f72836c1c002987c0649217332 100644
--- a/test/cctest/test-api.cc
+++ b/test/cctest/test-api.cc
@@ -44,7 +44,6 @@
#include "src/cpu-profiler.h"
#include "src/execution.h"
#include "src/isolate.h"
-#include "src/objects.h"
#include "src/parser.h"
#include "src/snapshot.h"
#include "src/unicode-inl.h"
@@ -23716,7 +23715,8 @@ TEST(EventLogging) {
isolate->SetEventLogger(StoringEventLoggerCallback);
v8::internal::HistogramTimer histogramTimer(
"V8.Test", 0, 10000, 50,
- reinterpret_cast<v8::internal::Isolate*>(isolate));
+ reinterpret_cast<v8::internal::Isolate*>(isolate),
+ v8::internal::Logger::NORMAL);
histogramTimer.Start();
CHECK_EQ("V8.Test", last_event_message);
CHECK_EQ(0, last_event_status);
« no previous file with comments | « src/tracing/trace-event.h ('k') | tools/gyp/v8.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698