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

Side by Side Diff: content/app/android/library_loader_hooks.cc

Issue 12700011: [Android] Allow JNI initialization on background thread (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: [Android] Allow JNI initialization on background thread - rebase to fix landing problems Created 7 years, 9 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
« no previous file with comments | « no previous file | content/public/android/java/src/org/chromium/content/app/ChildProcessService.java » ('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 "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
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
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
OLDNEW
« no previous file with comments | « no previous file | content/public/android/java/src/org/chromium/content/app/ChildProcessService.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698