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

Unified Diff: include/v8-platform.h

Issue 1744733002: [Tracing] Remove deprecated AddTraceEvent (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 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 | « no previous file | src/d8.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: include/v8-platform.h
diff --git a/include/v8-platform.h b/include/v8-platform.h
index f5f56641b63017d3862d575366da4994b3dd458c..4023a5b234fd4bb3b084299f6b9a3c2b1a8ffd65 100644
--- a/include/v8-platform.h
+++ b/include/v8-platform.h
@@ -155,21 +155,6 @@ class Platform {
const char* scope, uint64_t id, uint64_t bind_id, int32_t num_args,
const char** arg_names, const uint8_t* arg_types,
const uint64_t* arg_values, unsigned int flags) {
- return AddTraceEvent(phase, category_enabled_flag, name, id, bind_id,
- num_args, arg_names, arg_types, arg_values, flags);
- }
-
- /**
- * This method will soon be depreacted in favor of the version with the 'const
- * char* scope' parameter. If you do not already override this method, please
- * implement the other version instead.
- */
- // TODO(fmeawad): Remove once all embedders implement the scope version.
- virtual uint64_t AddTraceEvent(
- char phase, const uint8_t* category_enabled_flag, const char* name,
- uint64_t id, uint64_t bind_id, int32_t num_args, const char** arg_names,
- const uint8_t* arg_types, const uint64_t* arg_values,
- unsigned int flags) {
return 0;
}
« no previous file with comments | « no previous file | src/d8.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698