• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // Copyright 2013 The Chromium Authors
2 // 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"
6 
7 // Must come after all headers that specialize FromJniType() / ToJniType().
8 #include "base/base_jni/EventLog_jni.h"
9 
10 namespace base {
11 namespace android {
12 
EventLogWriteInt(int tag,int value)13 void EventLogWriteInt(int tag, int value) {
14   Java_EventLog_writeEvent(jni_zero::AttachCurrentThread(), tag, value);
15 }
16 
17 }  // namespace android
18 }  // namespace base
19