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 <stdio.h> | 5 #include <stdio.h> |
6 | 6 |
7 #include "base/android/jni_android.h" | 7 #include "base/android/jni_android.h" |
8 #include "base/android/jni_string.h" | 8 #include "base/android/jni_string.h" |
9 #include "base/android/locale_utils.h" | |
10 #include "base/android/path_utils.h" | 9 #include "base/android/path_utils.h" |
11 #include "base/android/scoped_java_ref.h" | 10 #include "base/android/scoped_java_ref.h" |
12 #include "base/at_exit.h" | 11 #include "base/at_exit.h" |
13 #include "base/command_line.h" | 12 #include "base/command_line.h" |
14 #include "base/file_path.h" | 13 #include "base/file_path.h" |
15 #include "base/file_util.h" | 14 #include "base/file_util.h" |
16 #include "base/logging.h" | 15 #include "base/logging.h" |
17 #include "base/stringprintf.h" | 16 #include "base/stringprintf.h" |
18 #include "base/string_tokenizer.h" | 17 #include "base/string_tokenizer.h" |
19 #include "base/string_util.h" | 18 #include "base/string_util.h" |
(...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
144 logging::DONT_LOCK_LOG_FILE, | 143 logging::DONT_LOCK_LOG_FILE, |
145 logging::DELETE_OLD_LOG_FILE, | 144 logging::DELETE_OLD_LOG_FILE, |
146 logging::ENABLE_DCHECK_FOR_NON_OFFICIAL_RELEASE_BUILDS); | 145 logging::ENABLE_DCHECK_FOR_NON_OFFICIAL_RELEASE_BUILDS); |
147 // To view log output with IDs and timestamps use "adb logcat -v threadtime". | 146 // To view log output with IDs and timestamps use "adb logcat -v threadtime". |
148 logging::SetLogItems(false, // Process ID | 147 logging::SetLogItems(false, // Process ID |
149 false, // Thread ID | 148 false, // Thread ID |
150 false, // Timestamp | 149 false, // Timestamp |
151 false); // Tick count | 150 false); // Tick count |
152 VLOG(0) << "Chromium logging enabled: level = " << logging::GetMinLogLevel() | 151 VLOG(0) << "Chromium logging enabled: level = " << logging::GetMinLogLevel() |
153 << ", default verbosity = " << logging::GetVlogVerbosity(); | 152 << ", default verbosity = " << logging::GetVlogVerbosity(); |
154 base::android::RegisterLocaleUtils(env); | |
155 base::android::RegisterPathUtils(env); | 153 base::android::RegisterPathUtils(env); |
156 } | 154 } |
157 | 155 |
158 } // namespace | 156 } // namespace |
159 | 157 |
160 // This method is called on a separate java thread so that we won't trigger | 158 // This method is called on a separate java thread so that we won't trigger |
161 // an ANR. | 159 // an ANR. |
162 static void RunTests(JNIEnv* env, | 160 static void RunTests(JNIEnv* env, |
163 jobject obj, | 161 jobject obj, |
164 jstring jfiles_dir, | 162 jstring jfiles_dir, |
(...skipping 27 matching lines...) Expand all Loading... |
192 // This is called by the VM when the shared library is first loaded. | 190 // This is called by the VM when the shared library is first loaded. |
193 JNI_EXPORT jint JNI_OnLoad(JavaVM* vm, void* reserved) { | 191 JNI_EXPORT jint JNI_OnLoad(JavaVM* vm, void* reserved) { |
194 base::android::InitVM(vm); | 192 base::android::InitVM(vm); |
195 JNIEnv* env = base::android::AttachCurrentThread(); | 193 JNIEnv* env = base::android::AttachCurrentThread(); |
196 if (!RegisterNativesImpl(env)) { | 194 if (!RegisterNativesImpl(env)) { |
197 return -1; | 195 return -1; |
198 } | 196 } |
199 LibraryLoadedOnMainThread(env); | 197 LibraryLoadedOnMainThread(env); |
200 return JNI_VERSION_1_4; | 198 return JNI_VERSION_1_4; |
201 } | 199 } |
OLD | NEW |