OLD | NEW |
| (Empty) |
1 // Copyright 2016 The Chromium Authors. All rights reserved. | |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
5 #include "blimp/client/public/android/blimp_jni_registrar.h" | |
6 | |
7 #include "base/android/jni_registrar.h" | |
8 | |
9 namespace blimp { | |
10 namespace client { | |
11 | |
12 // This method is declared in | |
13 // //blimp/client/public/android/blimp_jni_registrar.h, and either this function | |
14 // or the one in //blimp/client/core/android/blimp_jni_registrar.cc | |
15 // should be linked in to any binary blimp::client::RegisterBlimpJni. | |
16 bool RegisterBlimpJni(JNIEnv* env) { | |
17 return true; | |
18 } | |
19 | |
20 } // namespace client | |
21 } // namespace blimp | |
OLD | NEW |