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.h22
1 files changed, 22 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..dad4e4cfbc9
--- /dev/null
+++ b/chromium/base/android/event_log.h
@@ -0,0 +1,22 @@
+// Copyright 2014 The Chromium Authors. All rights reserved.
+// 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);
+
+bool RegisterEventLog(JNIEnv* env);
+
+} // namespace android
+} // namespace base
+
+#endif // BASE_ANDROID_EVENT_LOG_H_