Chromium Code Reviews| Index: ui/gfx/android/gfx_jni_registrar.cc |
| diff --git a/ui/gfx/android/gfx_jni_registrar.cc b/ui/gfx/android/gfx_jni_registrar.cc |
| index d4406c8fc6e4cead0b36c38046eca468f551d601..9c334eda112b5993e8f66ca4c994dd9c9ae4b9f1 100644 |
| --- a/ui/gfx/android/gfx_jni_registrar.cc |
| +++ b/ui/gfx/android/gfx_jni_registrar.cc |
| @@ -4,13 +4,15 @@ |
| #include "ui/gfx/android/gfx_jni_registrar.h" |
| +#include "ui/gfx/android/device_info.h" |
| + |
| namespace gfx { |
| void RegisterBitmapAndroid(JNIEnv* env); |
| bool RegisterJni(JNIEnv* env) { |
| RegisterBitmapAndroid(env); |
|
Yaron
2013/01/17 00:38:48
Can you make this consistent with other registrars
aruslan
2013/01/17 02:11:47
Moved everything to ui/android/ui_jni_registrar.cc
|
| - return true; |
| + return gfx::DeviceInfo::RegisterDeviceInfo(env); |
| } |
| } // namespace gfx |