Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2725)

Unified Diff: base/android/event_log.h

Issue 302173006: [Android] Java Bridge with Gin: implement Java methods invocation (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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_

Powered by Google App Engine
This is Rietveld 408576698