blob: f623842835880cf3d2177add1506453f63ab8929 [file] [log] [blame]
Avi Drissmane4622aa2022-09-08 20:36:061// Copyright 2013 The Chromium Authors
[email protected]86936532014-06-12 08:36:082// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#include "base/android/event_log.h"
Andrew Grieveecb885bb2024-05-29 18:14:196
7// Must come after all headers that specialize FromJniType() / ToJniType().
Andrew Grieve1c7dbda2023-05-26 15:34:558#include "base/base_jni/EventLog_jni.h"
[email protected]86936532014-06-12 08:36:089
10namespace base {
11namespace android {
12
13void EventLogWriteInt(int tag, int value) {
Sam Maier7fe12c12024-01-26 19:22:4314 Java_EventLog_writeEvent(jni_zero::AttachCurrentThread(), tag, value);
[email protected]86936532014-06-12 08:36:0815}
16
[email protected]86936532014-06-12 08:36:0817} // namespace android
18} // namespace base