Index: src/debug/debug-coverage.h |
diff --git a/src/debug/debug-coverage.h b/src/debug/debug-coverage.h |
index 2ab9da5ec67234bbd97e403246c373328484278a..a84186d6def8af646fffe049dc6072c66199ca4c 100644 |
--- a/src/debug/debug-coverage.h |
+++ b/src/debug/debug-coverage.h |
@@ -36,12 +36,12 @@ class Coverage : public AllStatic { |
Range toplevel; |
}; |
- static std::vector<ScriptData> Collect(Isolate* isolate); |
+ V8_EXPORT_PRIVATE static std::vector<ScriptData> Collect(Isolate* isolate); |
// Enable precise code coverage. This disables optimization and makes sure |
// invocation count is not affected by GC. |
- static void EnablePrecise(Isolate* isolate); |
- static void DisablePrecise(Isolate* isolate); |
+ V8_EXPORT_PRIVATE static void EnablePrecise(Isolate* isolate); |
+ V8_EXPORT_PRIVATE static void DisablePrecise(Isolate* isolate); |
}; |
} // namespace internal |