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

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

Issue 119493005: Expose a low-end device mode override flags for non-android OSs as well (Closed) Base URL: https://git.chromium.org/chromium/src.git@master
Patch Set: Created 7 years 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
« no previous file with comments | « no previous file | base/android/sys_utils.h » ('j') | base/android/sys_utils_android.cc » ('J')
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_android.h"
20 #include "base/android/thread_utils.h" 20 #include "base/android/thread_utils.h"
21 #include "base/basictypes.h" 21 #include "base/basictypes.h"
22 #include "base/debug/trace_event.h" 22 #include "base/debug/trace_event.h"
23 #include "base/message_loop/message_pump_android.h" 23 #include "base/message_loop/message_pump_android.h"
24 #include "base/power_monitor/power_monitor_device_source_android.h" 24 #include "base/power_monitor/power_monitor_device_source_android.h"
25 25
26 #if defined(GOOGLE_TV) 26 #if defined(GOOGLE_TV)
27 #include "base/android/context_types.h" 27 #include "base/android/context_types.h"
28 #endif 28 #endif
29 29
(...skipping 10 matching lines...) Expand all
40 { "ContentUriUtils", base::RegisterContentUriUtils }, 40 { "ContentUriUtils", base::RegisterContentUriUtils },
41 { "CpuFeatures", base::android::RegisterCpuFeatures }, 41 { "CpuFeatures", base::android::RegisterCpuFeatures },
42 { "ImportantFileWriterAndroid", 42 { "ImportantFileWriterAndroid",
43 base::android::RegisterImportantFileWriterAndroid }, 43 base::android::RegisterImportantFileWriterAndroid },
44 { "MemoryPressureListenerAndroid", 44 { "MemoryPressureListenerAndroid",
45 base::android::MemoryPressureListenerAndroid::Register }, 45 base::android::MemoryPressureListenerAndroid::Register },
46 { "JavaHandlerThread", base::android::JavaHandlerThread::RegisterBindings }, 46 { "JavaHandlerThread", base::android::JavaHandlerThread::RegisterBindings },
47 { "PathService", base::android::RegisterPathService }, 47 { "PathService", base::android::RegisterPathService },
48 { "PathUtils", base::android::RegisterPathUtils }, 48 { "PathUtils", base::android::RegisterPathUtils },
49 { "SystemMessageHandler", base::MessagePumpForUI::RegisterBindings }, 49 { "SystemMessageHandler", base::MessagePumpForUI::RegisterBindings },
50 { "SysUtils", base::android::SysUtils::Register }, 50 { "SysUtils", base::android::SysUtilsAndroid::Register },
51 { "PowerMonitor", base::RegisterPowerMonitor }, 51 { "PowerMonitor", base::RegisterPowerMonitor },
52 { "ThreadUtils", base::RegisterThreadUtils }, 52 { "ThreadUtils", base::RegisterThreadUtils },
53 }; 53 };
54 54
55 bool RegisterJni(JNIEnv* env) { 55 bool RegisterJni(JNIEnv* env) {
56 TRACE_EVENT0("startup", "base_android::RegisterJni"); 56 TRACE_EVENT0("startup", "base_android::RegisterJni");
57 return RegisterNativeMethods(env, kBaseRegisteredMethods, 57 return RegisterNativeMethods(env, kBaseRegisteredMethods,
58 arraysize(kBaseRegisteredMethods)); 58 arraysize(kBaseRegisteredMethods));
59 } 59 }
60 60
61 } // namespace android 61 } // namespace android
62 } // namespace base 62 } // namespace base
OLDNEW
« no previous file with comments | « no previous file | base/android/sys_utils.h » ('j') | base/android/sys_utils_android.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698