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

Side by Side Diff: chrome/app/android/chrome_main_delegate_android.cc

Issue 1940443002: 📤 Upstream SafeBrowsingApiBridge. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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
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 "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/metrics/uma_utils.h" 16 #include "chrome/browser/android/metrics/uma_utils.h"
17 #include "chrome/browser/media/android/remote/remote_media_player_manager.h" 17 #include "chrome/browser/media/android/remote/remote_media_player_manager.h"
18 #include "components/policy/core/browser/android/android_combined_policy_provide r.h" 18 #include "components/policy/core/browser/android/android_combined_policy_provide r.h"
19 #include "components/startup_metric_utils/browser/startup_metric_utils.h" 19 #include "components/startup_metric_utils/browser/startup_metric_utils.h"
20 #include "content/browser/media/android/browser_media_player_manager.h" 20 #include "content/browser/media/android/browser_media_player_manager.h"
21 #include "content/public/browser/browser_main_runner.h" 21 #include "content/public/browser/browser_main_runner.h"
22 22
23 #if defined(SAFE_BROWSING_DB_REMOTE) 23 #if defined(SAFE_BROWSING_DB_REMOTE)
24 #include "chrome/browser/android/safe_browsing/safe_browsing_api_handler_bridge. h"
24 #include "components/safe_browsing_db/safe_browsing_api_handler.h" 25 #include "components/safe_browsing_db/safe_browsing_api_handler.h"
25 using safe_browsing::SafeBrowsingApiHandler; 26 using safe_browsing::SafeBrowsingApiHandler;
26 #endif 27 #endif
27 28
28 namespace { 29 namespace {
29 30
30 content::BrowserMediaPlayerManager* CreateRemoteMediaPlayerManager( 31 content::BrowserMediaPlayerManager* CreateRemoteMediaPlayerManager(
31 content::RenderFrameHost* render_frame_host) { 32 content::RenderFrameHost* render_frame_host) {
32 return new remote_media::RemoteMediaPlayerManager(render_frame_host); 33 return new remote_media::RemoteMediaPlayerManager(render_frame_host);
33 } 34 }
34 35
35 } // namespace 36 } // namespace
36 37
37 // ChromeMainDelegateAndroid is created when the library is loaded. It is always 38 // ChromeMainDelegateAndroid is created when the library is loaded. It is always
38 // done in the process's main Java thread. But for non browser process, e.g. 39 // done in the process's main Java thread. But for non browser process, e.g.
39 // renderer process, it is not the native Chrome's main thread. 40 // renderer process, it is not the native Chrome's main thread.
40 ChromeMainDelegateAndroid::ChromeMainDelegateAndroid() { 41 ChromeMainDelegateAndroid::ChromeMainDelegateAndroid() {
41 } 42 }
42 43
43 ChromeMainDelegateAndroid::~ChromeMainDelegateAndroid() { 44 ChromeMainDelegateAndroid::~ChromeMainDelegateAndroid() {
44 } 45 }
45 46
46 bool ChromeMainDelegateAndroid::BasicStartupComplete(int* exit_code) { 47 bool ChromeMainDelegateAndroid::BasicStartupComplete(int* exit_code) {
47 #if defined(SAFE_BROWSING_DB_REMOTE) 48 #if defined(SAFE_BROWSING_DB_REMOTE)
48 safe_browsing_api_handler_.reset(CreateSafeBrowsingApiHandler()); 49 safe_browsing_api_handler_.reset(
50 new safe_browsing::SafeBrowsingApiHandlerBridge());
49 SafeBrowsingApiHandler::SetInstance(safe_browsing_api_handler_.get()); 51 SafeBrowsingApiHandler::SetInstance(safe_browsing_api_handler_.get());
50 #endif 52 #endif
51 53
52 policy::android::AndroidCombinedPolicyProvider::SetShouldWaitForPolicy(true); 54 policy::android::AndroidCombinedPolicyProvider::SetShouldWaitForPolicy(true);
53 SetChromeSpecificCommandLineFlags(); 55 SetChromeSpecificCommandLineFlags();
54 content::BrowserMediaPlayerManager::RegisterFactory( 56 content::BrowserMediaPlayerManager::RegisterFactory(
55 &CreateRemoteMediaPlayerManager); 57 &CreateRemoteMediaPlayerManager);
56 58
57 return ChromeMainDelegate::BasicStartupComplete(exit_code); 59 return ChromeMainDelegate::BasicStartupComplete(exit_code);
58 } 60 }
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
104 106
105 return ChromeMainDelegate::RunProcess(process_type, main_function_params); 107 return ChromeMainDelegate::RunProcess(process_type, main_function_params);
106 } 108 }
107 109
108 void ChromeMainDelegateAndroid::ProcessExiting( 110 void ChromeMainDelegateAndroid::ProcessExiting(
109 const std::string& process_type) { 111 const std::string& process_type) {
110 #if defined(SAFE_BROWSING_DB_REMOTE) 112 #if defined(SAFE_BROWSING_DB_REMOTE)
111 SafeBrowsingApiHandler::SetInstance(nullptr); 113 SafeBrowsingApiHandler::SetInstance(nullptr);
112 #endif 114 #endif
113 } 115 }
114
115 #if defined(SAFE_BROWSING_DB_REMOTE)
116 SafeBrowsingApiHandler*
117 ChromeMainDelegateAndroid::CreateSafeBrowsingApiHandler() {
118 return nullptr;
119 }
120 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698