1// Copyright 2014 The Chromium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5package org.chromium.base;
6
7/**
8 * A simple interface to Android's EventLog to be used by native code.
9 */
10@JNINamespace("base::android")
11public class EventLog {
12
13    @CalledByNative
14    public static void writeEvent(int tag, int value) {
15        android.util.EventLog.writeEvent(tag, value);
16    }
17}
18