| 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 24 matching lines...) Expand all Loading... |
| 35 | 35 |
| 36 namespace content { | 36 namespace content { |
| 37 | 37 |
| 38 static jint LibraryLoadedOnMainThread(JNIEnv* env, jclass clazz, | 38 static jint LibraryLoadedOnMainThread(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::CategoryFilter category_filter( |
| 46 command_line->GetSwitchValueASCII(switches::kTraceStartup), | 46 command_line->GetSwitchValueASCII(switches::kTraceStartup)); |
| 47 base::debug::TraceLog::GetInstance()->SetEnabled(category_filter, |
| 47 base::debug::TraceLog::RECORD_UNTIL_FULL); | 48 base::debug::TraceLog::RECORD_UNTIL_FULL); |
| 48 } | 49 } |
| 49 | 50 |
| 50 // Can only use event tracing after setting up the command line. | 51 // Can only use event tracing after setting up the command line. |
| 51 TRACE_EVENT0("jni", "JNI_OnLoad continuation"); | 52 TRACE_EVENT0("jni", "JNI_OnLoad continuation"); |
| 52 | 53 |
| 53 // Note: because logging is setup here right after copying the command line | 54 // Note: because logging is setup here right after copying the command line |
| 54 // array from java to native up top of this method, any code that adds the | 55 // array from java to native up top of this method, any code that adds the |
| 55 // --enable-dcheck switch must do so on the Java side. | 56 // --enable-dcheck switch must do so on the Java side. |
| 56 logging::DcheckState dcheck_state = | 57 logging::DcheckState dcheck_state = |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 105 } | 106 } |
| 106 | 107 |
| 107 bool RegisterLibraryLoaderEntryHook(JNIEnv* env) { | 108 bool RegisterLibraryLoaderEntryHook(JNIEnv* env) { |
| 108 // We need the AtExitManager to be created at the very beginning. | 109 // We need the AtExitManager to be created at the very beginning. |
| 109 g_at_exit_manager = new base::AtExitManager(); | 110 g_at_exit_manager = new base::AtExitManager(); |
| 110 | 111 |
| 111 return RegisterNativesImpl(env); | 112 return RegisterNativesImpl(env); |
| 112 } | 113 } |
| 113 | 114 |
| 114 } // namespace content | 115 } // namespace content |
| OLD | NEW |