Chromium Code Reviews| Index: media/base/android/media_jni_registrar.cc |
| diff --git a/media/base/android/media_jni_registrar.cc b/media/base/android/media_jni_registrar.cc |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..bc44d418f1ed5409b160aff14dbf3430e4661f79 |
| --- /dev/null |
| +++ b/media/base/android/media_jni_registrar.cc |
| @@ -0,0 +1,25 @@ |
| +// 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. |
| + |
| +#include "media/base/android/media_jni_registrar.h" |
| + |
| +#include "base/basictypes.h" |
| +#include "base/android/jni_android.h" |
| +#include "base/android/jni_registrar.h" |
| + |
| +#include "media/base/android/media_player_bridge.h" |
| + |
| +namespace media { |
| + |
| +static base::android::RegistrationMethod kMediaRegisteredMethods[] = { |
| + { "MediaPlayerListener", |
| + MediaPlayerBridge::RegisterMediaPlayerListener }, |
|
Ami GONE FROM CHROMIUM
2012/04/24 19:44:55
Is there a design doc (or any description of the o
Ted C
2012/04/24 22:28:10
The idea is to limit the knowledge the library loa
|
| +}; |
| + |
| +bool RegisterJni(JNIEnv* env) { |
| + return base::android::RegisterNativeMethods( |
| + env, kMediaRegisteredMethods, arraysize(kMediaRegisteredMethods)); |
| +} |
| + |
| +} // namespace media |