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

Unified Diff: src/objects.h

Issue 2696163002: [debugger] implement inspector-facing API for code coverage. (Closed)
Patch Set: 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
Index: src/objects.h
diff --git a/src/objects.h b/src/objects.h
index c7b92e1b49d3222a24cea27895fa12329db31eac..dc1ba72f96cc8d4e53db78b043cfd2c8b8f88eb7 100644
--- a/src/objects.h
+++ b/src/objects.h
@@ -6694,10 +6694,8 @@ class Script: public Struct {
// initializes the line ends array, avoiding expensive recomputations.
// The non-static version is not allocating and safe for unhandlified
// callsites.
- V8_EXPORT_PRIVATE static bool GetPositionInfo(Handle<Script> script,
- int position,
- PositionInfo* info,
- OffsetFlag offset_flag);
+ static bool GetPositionInfo(Handle<Script> script, int position,
+ PositionInfo* info, OffsetFlag offset_flag);
bool GetPositionInfo(int position, PositionInfo* info,
OffsetFlag offset_flag) const;

Powered by Google App Engine
This is Rietveld 408576698