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

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

Issue 2764073004: [debug] do not report unnecessary coverage data. (Closed)
Patch Set: Created 3 years, 9 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 | « no previous file | src/debug/debug-coverage.cc » ('j') | src/debug/debug-coverage.cc » ('J')
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 f37b8f37440fe7697054ecca2c8655bc8c598ed0..5a4ac15569ceb950359f6cf4d271cb1203a34716 100644
--- a/src/debug/debug-coverage.h
+++ b/src/debug/debug-coverage.h
@@ -27,7 +27,7 @@ struct CoverageFunction {
struct CoverageScript {
// Initialize top-level function in case it has been garbage-collected.
- CoverageScript(Isolate* isolate, Handle<Script> s) : script(s) {}
+ explicit CoverageScript(Handle<Script> s) : script(s) {}
Handle<Script> script;
// Functions are sorted by start position, from outer to inner function.
std::vector<CoverageFunction> functions;
« no previous file with comments | « no previous file | src/debug/debug-coverage.cc » ('j') | src/debug/debug-coverage.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698