OLD | NEW |
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 "content/public/app/android_library_loader_hooks.h" | 5 #include "content/public/app/android_library_loader_hooks.h" |
6 | 6 |
7 #include "base/android/base_jni_registrar.h" | 7 #include "base/android/base_jni_registrar.h" |
8 #include "base/android/jni_android.h" | 8 #include "base/android/jni_android.h" |
9 #include "base/android/jni_registrar.h" | 9 #include "base/android/jni_registrar.h" |
10 #include "base/android/jni_string.h" | 10 #include "base/android/jni_string.h" |
(...skipping 17 matching lines...) Expand all Loading... |
28 #include "net/android/net_jni_registrar.h" | 28 #include "net/android/net_jni_registrar.h" |
29 #include "ui/android/ui_jni_registrar.h" | 29 #include "ui/android/ui_jni_registrar.h" |
30 #include "ui/shell_dialogs/android/shell_dialogs_jni_registrar.h" | 30 #include "ui/shell_dialogs/android/shell_dialogs_jni_registrar.h" |
31 | 31 |
32 namespace { | 32 namespace { |
33 base::AtExitManager* g_at_exit_manager = NULL; | 33 base::AtExitManager* g_at_exit_manager = NULL; |
34 } | 34 } |
35 | 35 |
36 namespace content { | 36 namespace content { |
37 | 37 |
38 static jint LibraryLoadedOnMainThread(JNIEnv* env, jclass clazz, | 38 static jint LibraryLoaded(JNIEnv* env, jclass clazz, |
39 jobjectArray init_command_line) { | 39 jobjectArray init_command_line) { |
40 InitNativeCommandLineFromJavaArray(env, init_command_line); | 40 InitNativeCommandLineFromJavaArray(env, init_command_line); |
41 | 41 |
42 CommandLine* command_line = CommandLine::ForCurrentProcess(); | 42 CommandLine* command_line = CommandLine::ForCurrentProcess(); |
43 | 43 |
44 if (command_line->HasSwitch(switches::kTraceStartup)) { | 44 if (command_line->HasSwitch(switches::kTraceStartup)) { |
45 base::debug::TraceLog::GetInstance()->SetEnabled( | 45 base::debug::TraceLog::GetInstance()->SetEnabled( |
46 command_line->GetSwitchValueASCII(switches::kTraceStartup), | 46 command_line->GetSwitchValueASCII(switches::kTraceStartup), |
47 base::debug::TraceLog::RECORD_UNTIL_FULL); | 47 base::debug::TraceLog::RECORD_UNTIL_FULL); |
48 } | 48 } |
49 | 49 |
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
105 } | 105 } |
106 | 106 |
107 bool RegisterLibraryLoaderEntryHook(JNIEnv* env) { | 107 bool RegisterLibraryLoaderEntryHook(JNIEnv* env) { |
108 // We need the AtExitManager to be created at the very beginning. | 108 // We need the AtExitManager to be created at the very beginning. |
109 g_at_exit_manager = new base::AtExitManager(); | 109 g_at_exit_manager = new base::AtExitManager(); |
110 | 110 |
111 return RegisterNativesImpl(env); | 111 return RegisterNativesImpl(env); |
112 } | 112 } |
113 | 113 |
114 } // namespace content | 114 } // namespace content |
OLD | NEW |