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

Unified Diff: base/android/java/src/org/chromium/base/TraceEvent.java

Issue 787803004: Update from https://crrev.com/307664 (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Rebase. Created 6 years 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 | « DEPS ('k') | base/id_map.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/android/java/src/org/chromium/base/TraceEvent.java
diff --git a/base/android/java/src/org/chromium/base/TraceEvent.java b/base/android/java/src/org/chromium/base/TraceEvent.java
index 1c7e5349478340d197c15f20c86574d591427b7d..164ccf864e8cc88a41d523ec6294c17c098d6b68 100644
--- a/base/android/java/src/org/chromium/base/TraceEvent.java
+++ b/base/android/java/src/org/chromium/base/TraceEvent.java
@@ -221,15 +221,6 @@ public class TraceEvent {
}
/**
- * Convenience wrapper around the versions of startAsync() that take string parameters.
- * @param id The id of the asynchronous event.
- * @see #begin()
- */
- public static void startAsync(long id) {
- if (sEnabled) nativeStartAsync(getCallerName(), id, null);
- }
-
- /**
* Triggers the 'start' native trace event with no arguments.
* @param name The name of the event.
* @param id The id of the asynchronous event.
@@ -249,15 +240,6 @@ public class TraceEvent {
}
/**
- * Convenience wrapper around the versions of finishAsync() that take string parameters.
- * @param id The id of the asynchronous event.
- * @see #begin()
- */
- public static void finishAsync(long id) {
- if (sEnabled) nativeFinishAsync(getCallerName(), id, null);
- }
-
- /**
* Triggers the 'finish' native trace event with no arguments.
* @param name The name of the event.
* @param id The id of the asynchronous event.
« no previous file with comments | « DEPS ('k') | base/id_map.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698