Chromium Code Reviews| 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..f1eb866346b5340344e03dd269359eb136361771 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); |
|
bulach
2014/06/09 11:44:33
not: s/event/Event/
mnaganov (inactive)
2014/06/11 13:50:44
Done.
|
| + |
| +bool RegisterEventLog(JNIEnv* env); |
| } // namespace android |
| } // namespace base |
| -#endif // CONTENT_COMMON_ANDROID_TRACE_EVENT_H_ |
| +#endif // BASE_ANDROID_EVENT_LOG_H_ |