summaryrefslogtreecommitdiffstats
path: root/chromium/base/android/event_log.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/base/android/event_log.h')
-rw-r--r--chromium/base/android/event_log.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/chromium/base/android/event_log.h b/chromium/base/android/event_log.h
new file mode 100644
index 00000000000..9131f55edf4
--- /dev/null
+++ b/chromium/base/android/event_log.h
@@ -0,0 +1,20 @@
+// Copyright 2014 The Chromium Authors
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef BASE_ANDROID_EVENT_LOG_H_
+#define BASE_ANDROID_EVENT_LOG_H_
+
+#include <jni.h>
+
+#include "base/base_export.h"
+
+namespace base {
+namespace android {
+
+void BASE_EXPORT EventLogWriteInt(int tag, int value);
+
+} // namespace android
+} // namespace base
+
+#endif // BASE_ANDROID_EVENT_LOG_H_