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

Side by Side Diff: base/android/early_trace_event_binding.cc

Issue 2359503002: Let TRACE_EVENT_XXX_WITH_TIMESTAMP accept TimeTicks instead of int64_t (Closed)
Patch Set: Rebase Created 4 years, 3 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 unified diff | Download patch
« no previous file with comments | « no previous file | base/trace_event/common/trace_event_common.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "base/android/early_trace_event_binding.h" 5 #include "base/android/early_trace_event_binding.h"
6 6
7 #include <stdint.h> 7 #include <stdint.h>
8 8
9 #include "base/android/jni_string.h" 9 #include "base/android/jni_string.h"
10 #include "base/time/time.h" 10 #include "base/time/time.h"
(...skipping 14 matching lines...) Expand all
25 const JavaParamRef<jstring>& jname, 25 const JavaParamRef<jstring>& jname,
26 jlong begin_time_ms, 26 jlong begin_time_ms,
27 jlong end_time_ms, 27 jlong end_time_ms,
28 jint thread_id) { 28 jint thread_id) {
29 std::string name = ConvertJavaStringToUTF8(env, jname); 29 std::string name = ConvertJavaStringToUTF8(env, jname);
30 int64_t begin_us = begin_time_ms * 1000; 30 int64_t begin_us = begin_time_ms * 1000;
31 int64_t end_us = end_time_ms * 1000; 31 int64_t end_us = end_time_ms * 1000;
32 32
33 INTERNAL_TRACE_EVENT_ADD_WITH_ID_TID_AND_TIMESTAMP( 33 INTERNAL_TRACE_EVENT_ADD_WITH_ID_TID_AND_TIMESTAMP(
34 TRACE_EVENT_PHASE_BEGIN, kEarlyJavaCategory, name.c_str(), 34 TRACE_EVENT_PHASE_BEGIN, kEarlyJavaCategory, name.c_str(),
35 trace_event_internal::kNoId, thread_id, begin_us, TRACE_EVENT_FLAG_COPY); 35 trace_event_internal::kNoId, thread_id,
36 TimeTicks::FromInternalValue(begin_us), TRACE_EVENT_FLAG_COPY);
36 INTERNAL_TRACE_EVENT_ADD_WITH_ID_TID_AND_TIMESTAMP( 37 INTERNAL_TRACE_EVENT_ADD_WITH_ID_TID_AND_TIMESTAMP(
37 TRACE_EVENT_PHASE_END, kEarlyJavaCategory, name.c_str(), 38 TRACE_EVENT_PHASE_END, kEarlyJavaCategory, name.c_str(),
38 trace_event_internal::kNoId, thread_id, end_us, TRACE_EVENT_FLAG_COPY); 39 trace_event_internal::kNoId, thread_id,
40 TimeTicks::FromInternalValue(end_us), TRACE_EVENT_FLAG_COPY);
39 } 41 }
40 42
41 bool RegisterEarlyTraceEvent(JNIEnv* env) { 43 bool RegisterEarlyTraceEvent(JNIEnv* env) {
42 return RegisterNativesImpl(env); 44 return RegisterNativesImpl(env);
43 } 45 }
44 46
45 } // namespace android 47 } // namespace android
46 } // namespace base 48 } // namespace base
OLDNEW
« no previous file with comments | « no previous file | base/trace_event/common/trace_event_common.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698