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

Unified Diff: ui/gfx/android/gfx_jni_registrar.h

Issue 10823094: Add bitmap utils for Chrome on Android (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Include fixes from downstream Created 8 years, 5 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: 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_

Powered by Google App Engine
This is Rietveld 408576698