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

Side by Side Diff: base/android/base_jni_registrar.cc

Issue 136343002: Remove Chrome for TV code. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebased. Created 6 years, 11 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
« no previous file with comments | « no previous file | base/android/context_types.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "base/android/base_jni_registrar.h" 5 #include "base/android/base_jni_registrar.h"
6 6
7 #include "base/android/activity_status.h" 7 #include "base/android/activity_status.h"
8 #include "base/android/build_info.h" 8 #include "base/android/build_info.h"
9 #include "base/android/command_line_android.h" 9 #include "base/android/command_line_android.h"
10 #include "base/android/content_uri_utils.h" 10 #include "base/android/content_uri_utils.h"
11 #include "base/android/cpu_features.h" 11 #include "base/android/cpu_features.h"
12 #include "base/android/important_file_writer_android.h" 12 #include "base/android/important_file_writer_android.h"
13 #include "base/android/java_handler_thread.h" 13 #include "base/android/java_handler_thread.h"
14 #include "base/android/jni_android.h" 14 #include "base/android/jni_android.h"
15 #include "base/android/jni_registrar.h" 15 #include "base/android/jni_registrar.h"
16 #include "base/android/memory_pressure_listener_android.h" 16 #include "base/android/memory_pressure_listener_android.h"
17 #include "base/android/path_service_android.h" 17 #include "base/android/path_service_android.h"
18 #include "base/android/path_utils.h" 18 #include "base/android/path_utils.h"
19 #include "base/android/sys_utils.h" 19 #include "base/android/sys_utils.h"
20 #include "base/android/thread_utils.h" 20 #include "base/android/thread_utils.h"
21 #include "base/android/trace_event_binding.h" 21 #include "base/android/trace_event_binding.h"
22 #include "base/basictypes.h" 22 #include "base/basictypes.h"
23 #include "base/debug/trace_event.h" 23 #include "base/debug/trace_event.h"
24 #include "base/message_loop/message_pump_android.h" 24 #include "base/message_loop/message_pump_android.h"
25 #include "base/power_monitor/power_monitor_device_source_android.h" 25 #include "base/power_monitor/power_monitor_device_source_android.h"
26 26
27 #if defined(GOOGLE_TV)
28 #include "base/android/context_types.h"
29 #endif
30
31 namespace base { 27 namespace base {
32 namespace android { 28 namespace android {
33 29
34 static RegistrationMethod kBaseRegisteredMethods[] = { 30 static RegistrationMethod kBaseRegisteredMethods[] = {
35 { "ActivityStatus", base::android::ActivityStatus::RegisterBindings }, 31 { "ActivityStatus", base::android::ActivityStatus::RegisterBindings },
36 { "BuildInfo", base::android::BuildInfo::RegisterBindings }, 32 { "BuildInfo", base::android::BuildInfo::RegisterBindings },
37 { "CommandLine", base::android::RegisterCommandLine }, 33 { "CommandLine", base::android::RegisterCommandLine },
38 #if defined(GOOGLE_TV)
39 { "ContextTypes", base::android::RegisterContextTypes },
40 #endif
41 { "ContentUriUtils", base::RegisterContentUriUtils }, 34 { "ContentUriUtils", base::RegisterContentUriUtils },
42 { "CpuFeatures", base::android::RegisterCpuFeatures }, 35 { "CpuFeatures", base::android::RegisterCpuFeatures },
43 { "ImportantFileWriterAndroid", 36 { "ImportantFileWriterAndroid",
44 base::android::RegisterImportantFileWriterAndroid }, 37 base::android::RegisterImportantFileWriterAndroid },
45 { "MemoryPressureListenerAndroid", 38 { "MemoryPressureListenerAndroid",
46 base::android::MemoryPressureListenerAndroid::Register }, 39 base::android::MemoryPressureListenerAndroid::Register },
47 { "JavaHandlerThread", base::android::JavaHandlerThread::RegisterBindings }, 40 { "JavaHandlerThread", base::android::JavaHandlerThread::RegisterBindings },
48 { "PathService", base::android::RegisterPathService }, 41 { "PathService", base::android::RegisterPathService },
49 { "PathUtils", base::android::RegisterPathUtils }, 42 { "PathUtils", base::android::RegisterPathUtils },
50 { "SystemMessageHandler", base::MessagePumpForUI::RegisterBindings }, 43 { "SystemMessageHandler", base::MessagePumpForUI::RegisterBindings },
51 { "SysUtils", base::android::SysUtils::Register }, 44 { "SysUtils", base::android::SysUtils::Register },
52 { "PowerMonitor", base::RegisterPowerMonitor }, 45 { "PowerMonitor", base::RegisterPowerMonitor },
53 { "ThreadUtils", base::RegisterThreadUtils }, 46 { "ThreadUtils", base::RegisterThreadUtils },
54 { "TraceEvent", base::android::RegisterTraceEvent }, 47 { "TraceEvent", base::android::RegisterTraceEvent },
55 }; 48 };
56 49
57 bool RegisterJni(JNIEnv* env) { 50 bool RegisterJni(JNIEnv* env) {
58 TRACE_EVENT0("startup", "base_android::RegisterJni"); 51 TRACE_EVENT0("startup", "base_android::RegisterJni");
59 return RegisterNativeMethods(env, kBaseRegisteredMethods, 52 return RegisterNativeMethods(env, kBaseRegisteredMethods,
60 arraysize(kBaseRegisteredMethods)); 53 arraysize(kBaseRegisteredMethods));
61 } 54 }
62 55
63 } // namespace android 56 } // namespace android
64 } // namespace base 57 } // namespace base
OLDNEW
« no previous file with comments | « no previous file | base/android/context_types.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698