Skip to content
This repository has been archived by the owner on Oct 15, 2020. It is now read-only.

Commit

Permalink
chakrashim: fixing build break by adding new stubs for v8 features
Browse files Browse the repository at this point in the history
  • Loading branch information
MSLaguana committed Feb 8, 2018
1 parent b9518a5 commit 33a43bc
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
2 changes: 2 additions & 0 deletions deps/chakrashim/include/libplatform/v8-tracing.h
Original file line number Diff line number Diff line change
Expand Up @@ -234,6 +234,8 @@ class TracingController
void StartTracing(TraceConfig* trace_config);
void StopTracing();

virtual int64_t CurrentTimestampMicroseconds();

private:
const uint8_t* GetCategoryGroupEnabledInternal(const char* category_group);
void UpdateCategoryGroupEnabledFlag(size_t category_index);
Expand Down
4 changes: 4 additions & 0 deletions deps/chakrashim/src/v8v8.cc
Original file line number Diff line number Diff line change
Expand Up @@ -247,6 +247,10 @@ namespace tracing {
jsrt::Unimplemented("TracingController");
}

int64_t TracingController::CurrentTimestampMicroseconds() {
jsrt::Unimplemented("TracingController");
}

void TraceConfig::AddIncludedCategory(char const*) {
jsrt::Unimplemented("TraceConfig");
}
Expand Down

0 comments on commit 33a43bc

Please sign in to comment.