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 "chrome/app/android/chrome_main_delegate_android.h" | 5 #include "chrome/app/android/chrome_main_delegate_android.h" |
6 | 6 |
7 #include "base/android/jni_android.h" | 7 #include "base/android/jni_android.h" |
8 #include "base/trace_event/trace_event.h" | 8 #include "base/trace_event/trace_event.h" |
9 #include "chrome/browser/android/chrome_jni_registrar.h" | 9 #include "chrome/browser/android/chrome_jni_registrar.h" |
10 #include "chrome/browser/android/chrome_startup_flags.h" | 10 #include "chrome/browser/android/chrome_startup_flags.h" |
11 #include "chrome/browser/android/uma_utils.h" | 11 #include "chrome/browser/android/metrics/uma_utils.h" |
12 #include "components/startup_metric_utils/startup_metric_utils.h" | 12 #include "components/startup_metric_utils/startup_metric_utils.h" |
13 #include "content/public/browser/browser_main_runner.h" | 13 #include "content/public/browser/browser_main_runner.h" |
14 | 14 |
15 // ChromeMainDelegateAndroid is created when the library is loaded. It is always | 15 // ChromeMainDelegateAndroid is created when the library is loaded. It is always |
16 // done in the process's main Java thread. But for non browser process, e.g. | 16 // done in the process's main Java thread. But for non browser process, e.g. |
17 // renderer process, it is not the native Chrome's main thread. | 17 // renderer process, it is not the native Chrome's main thread. |
18 ChromeMainDelegateAndroid::ChromeMainDelegateAndroid() { | 18 ChromeMainDelegateAndroid::ChromeMainDelegateAndroid() { |
19 } | 19 } |
20 | 20 |
21 ChromeMainDelegateAndroid::~ChromeMainDelegateAndroid() { | 21 ChromeMainDelegateAndroid::~ChromeMainDelegateAndroid() { |
(...skipping 30 matching lines...) Expand all Loading... |
52 } | 52 } |
53 | 53 |
54 bool ChromeMainDelegateAndroid::BasicStartupComplete(int* exit_code) { | 54 bool ChromeMainDelegateAndroid::BasicStartupComplete(int* exit_code) { |
55 SetChromeSpecificCommandLineFlags(); | 55 SetChromeSpecificCommandLineFlags(); |
56 return ChromeMainDelegate::BasicStartupComplete(exit_code); | 56 return ChromeMainDelegate::BasicStartupComplete(exit_code); |
57 } | 57 } |
58 | 58 |
59 bool ChromeMainDelegateAndroid::RegisterApplicationNativeMethods(JNIEnv* env) { | 59 bool ChromeMainDelegateAndroid::RegisterApplicationNativeMethods(JNIEnv* env) { |
60 return chrome::android::RegisterJni(env); | 60 return chrome::android::RegisterJni(env); |
61 } | 61 } |
OLD | NEW |