Index: ui/gfx/android/gfx_jni_registrar.h |
diff --git a/ui/gfx/android/gfx_jni_registrar.h b/ui/gfx/android/gfx_jni_registrar.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..623ab3ed1660c498b707ff9836a5e04ef0a97fe7 |
--- /dev/null |
+++ b/ui/gfx/android/gfx_jni_registrar.h |
@@ -0,0 +1,17 @@ |
+// Copyright (c) 2012 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 GFX_ANDROID_GFX_JNI_REGISTRAR_H_ |
sky
2012/08/03 17:15:36
header guard is wrong.
Jesse Greenwald
2012/08/03 20:10:06
Done.
|
+#define GFX_ANDROID_GFX_JNI_REGISTRAR_H_ |
+ |
+#include <jni.h> |
+ |
+namespace gfx { |
+ |
+// Register all JNI bindings necessary for gfx. |
+bool RegisterJni(JNIEnv* env); |
+ |
+} // namespace gfx |
+ |
+#endif // GFX_ANDROID_GFX_JNI_REGISTRAR_H_ |