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

Unified Diff: src/debug/debug-coverage.h

Issue 2695823003: [debugger] add lcov support to d8. (Closed)
Patch Set: actual fix Created 3 years, 10 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/d8.cc ('k') | src/debug/debug-coverage.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« no previous file with comments | « src/d8.cc ('k') | src/debug/debug-coverage.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698