| Index: content/browser/android/content_jni_registrar.cc
|
| diff --git a/content/browser/android/content_jni_registrar.cc b/content/browser/android/content_jni_registrar.cc
|
| deleted file mode 100644
|
| index aa5064b458328dd21df0e5758b8e23aa2dd45b6f..0000000000000000000000000000000000000000
|
| --- a/content/browser/android/content_jni_registrar.cc
|
| +++ /dev/null
|
| @@ -1,28 +0,0 @@
|
| -// 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 "content/browser/android/content_jni_registrar.h"
|
| -
|
| -#include "base/android/jni_android.h"
|
| -#include "base/android/jni_registrar.h"
|
| -#include "content/browser/android/command_line.h"
|
| -#include "content/browser/android/download_controller.h"
|
| -#include "content/browser/android/trace_event_binding.h"
|
| -
|
| -namespace content {
|
| -namespace android {
|
| -
|
| -base::android::RegistrationMethod kContentRegisteredMethods[] = {
|
| - { "CommandLine", RegisterCommandLine },
|
| - { "DownloadController", DownloadController::RegisterDownloadController },
|
| - { "TraceEvent", RegisterTraceEvent },
|
| -};
|
| -
|
| -bool RegisterJni(JNIEnv* env) {
|
| - return RegisterNativeMethods(env, kContentRegisteredMethods,
|
| - arraysize(kContentRegisteredMethods));
|
| -}
|
| -
|
| -} // namespace android
|
| -} // namespace content
|
|
|