Fix build break
[chromium-blink-merge.git] / content / shell / android / shell_jni_registrar.cc
blob504eda713cccc6540e58cdf74be14b479f4defc3
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.
5 #include "content/shell/android/shell_jni_registrar.h"
7 #include "base/android/jni_android.h"
8 #include "base/android/jni_registrar.h"
9 #include "content/shell/android/shell_manager.h"
10 #include "content/shell/shell.h"
12 namespace {
14 static base::android::RegistrationMethod kShellRegistrationMethods[] = {
15 { "Shell", content::Shell::Register },
16 { "ShellManager", content::RegisterShellManager },
19 } // namespace
21 namespace content {
22 namespace android {
24 bool RegisterShellJni(JNIEnv* env) {
25 return RegisterNativeMethods(env, kShellRegistrationMethods,
26 arraysize(kShellRegistrationMethods));
29 } // namespace android
30 } // namespace content