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

Side by Side Diff: media/base/android/media_jni_registrar.cc

Issue 10035034: Implement the skeleton of an android content shell. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix DEPS issues and hopefully the drawable inclusion failure Created 8 years, 8 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 // Copyright (c) 2012 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 "media/base/android/media_jni_registrar.h"
6
7 #include "base/basictypes.h"
8 #include "base/android/jni_android.h"
9 #include "base/android/jni_registrar.h"
10
11 #include "media/base/android/media_player_bridge.h"
12
13 namespace media {
14
15 static base::android::RegistrationMethod kMediaRegisteredMethods[] = {
16 { "MediaPlayerListener",
17 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
18 };
19
20 bool RegisterJni(JNIEnv* env) {
21 return base::android::RegisterNativeMethods(
22 env, kMediaRegisteredMethods, arraysize(kMediaRegisteredMethods));
23 }
24
25 } // namespace media
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698