| 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/base_paths_android.h" | 8 #include "base/base_paths_android.h" |
| 9 #include "base/files/file_path.h" | 9 #include "base/files/file_path.h" |
| 10 #include "base/files/file_util.h" | 10 #include "base/files/file_util.h" |
| 11 #include "base/logging.h" | 11 #include "base/logging.h" |
| 12 #include "base/path_service.h" | 12 #include "base/path_service.h" |
| 13 #include "base/trace_event/trace_event.h" | 13 #include "base/trace_event/trace_event.h" |
| 14 #include "chrome/browser/android/chrome_startup_flags.h" | 14 #include "chrome/browser/android/chrome_startup_flags.h" |
| 15 #include "chrome/browser/android/metrics/uma_utils.h" | 15 #include "chrome/browser/android/metrics/uma_utils.h" |
| 16 #include "chrome/browser/android/safe_browsing/safe_browsing_api_handler_bridge.
h" | |
| 17 #include "chrome/browser/media/android/remote/remote_media_player_manager.h" | 16 #include "chrome/browser/media/android/remote/remote_media_player_manager.h" |
| 18 #include "components/policy/core/browser/android/android_combined_policy_provide
r.h" | 17 #include "components/policy/core/browser/android/android_combined_policy_provide
r.h" |
| 18 #include "components/safe_browsing_db/android/safe_browsing_api_handler_bridge.h
" |
| 19 #include "components/safe_browsing_db/safe_browsing_api_handler.h" | 19 #include "components/safe_browsing_db/safe_browsing_api_handler.h" |
| 20 #include "components/startup_metric_utils/browser/startup_metric_utils.h" | 20 #include "components/startup_metric_utils/browser/startup_metric_utils.h" |
| 21 #include "content/browser/media/android/browser_media_player_manager.h" | 21 #include "content/browser/media/android/browser_media_player_manager.h" |
| 22 #include "content/public/browser/browser_main_runner.h" | 22 #include "content/public/browser/browser_main_runner.h" |
| 23 | 23 |
| 24 using safe_browsing::SafeBrowsingApiHandler; | 24 using safe_browsing::SafeBrowsingApiHandler; |
| 25 | 25 |
| 26 namespace { | 26 namespace { |
| 27 | 27 |
| 28 content::BrowserMediaPlayerManager* CreateRemoteMediaPlayerManager( | 28 content::BrowserMediaPlayerManager* CreateRemoteMediaPlayerManager( |
| (...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 99 return browser_runner_->Initialize(main_function_params); | 99 return browser_runner_->Initialize(main_function_params); |
| 100 } | 100 } |
| 101 | 101 |
| 102 return ChromeMainDelegate::RunProcess(process_type, main_function_params); | 102 return ChromeMainDelegate::RunProcess(process_type, main_function_params); |
| 103 } | 103 } |
| 104 | 104 |
| 105 void ChromeMainDelegateAndroid::ProcessExiting( | 105 void ChromeMainDelegateAndroid::ProcessExiting( |
| 106 const std::string& process_type) { | 106 const std::string& process_type) { |
| 107 SafeBrowsingApiHandler::SetInstance(nullptr); | 107 SafeBrowsingApiHandler::SetInstance(nullptr); |
| 108 } | 108 } |
| OLD | NEW |