| Index: base/android/event_log.h
|
| diff --git a/base/android/trace_event_binding.h b/base/android/event_log.h
|
| similarity index 54%
|
| copy from base/android/trace_event_binding.h
|
| copy to base/android/event_log.h
|
| index ed0626620aac4c933cdf9360b76b13c8178f60e2..dad4e4cfbc95deeece097b64daa6bda1dbb2dea0 100644
|
| --- a/base/android/trace_event_binding.h
|
| +++ b/base/android/event_log.h
|
| @@ -2,17 +2,21 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| -#ifndef BASE_ANDROID_TRACE_EVENT_H_
|
| -#define BASE_ANDROID_TRACE_EVENT_H_
|
| +#ifndef BASE_ANDROID_EVENT_LOG_H_
|
| +#define BASE_ANDROID_EVENT_LOG_H_
|
|
|
| #include <jni.h>
|
|
|
| +#include "base/base_export.h"
|
| +
|
| namespace base {
|
| namespace android {
|
|
|
| -extern bool RegisterTraceEvent(JNIEnv* env);
|
| +void BASE_EXPORT EventLogWriteInt(int tag, int value);
|
| +
|
| +bool RegisterEventLog(JNIEnv* env);
|
|
|
| } // namespace android
|
| } // namespace base
|
|
|
| -#endif // CONTENT_COMMON_ANDROID_TRACE_EVENT_H_
|
| +#endif // BASE_ANDROID_EVENT_LOG_H_
|
|
|