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/browser/chrome_browser_main_android.h" | 5 #include "chrome/browser/chrome_browser_main_android.h" |
6 | 6 |
7 #include "base/android/build_info.h" | 7 #include "base/android/build_info.h" |
8 #include "base/base_switches.h" | 8 #include "base/base_switches.h" |
9 #include "base/command_line.h" | 9 #include "base/command_line.h" |
10 #include "base/files/file_path.h" | 10 #include "base/files/file_path.h" |
11 #include "base/files/file_util.h" | 11 #include "base/files/file_util.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_media_client_android.h" | |
15 #include "chrome/browser/android/seccomp_support_detector.h" | 14 #include "chrome/browser/android/seccomp_support_detector.h" |
16 #include "chrome/browser/signin/signin_manager_factory.h" | 15 #include "chrome/browser/signin/signin_manager_factory.h" |
| 16 #include "chrome/common/chrome_media_client_android.h" |
17 #include "chrome/common/chrome_paths.h" | 17 #include "chrome/common/chrome_paths.h" |
18 #include "components/crash/content/app/breakpad_linux.h" | 18 #include "components/crash/content/app/breakpad_linux.h" |
19 #include "components/crash/content/browser/crash_dump_manager_android.h" | 19 #include "components/crash/content/browser/crash_dump_manager_android.h" |
20 #include "components/signin/core/browser/signin_manager.h" | 20 #include "components/signin/core/browser/signin_manager.h" |
21 #include "content/public/browser/android/compositor.h" | 21 #include "content/public/browser/android/compositor.h" |
22 #include "content/public/browser/browser_thread.h" | 22 #include "content/public/browser/browser_thread.h" |
23 #include "content/public/common/main_function_params.h" | 23 #include "content/public/common/main_function_params.h" |
24 #include "media/base/android/media_client_android.h" | 24 #include "media/base/android/media_client_android.h" |
25 #include "net/android/network_change_notifier_factory_android.h" | 25 #include "net/android/network_change_notifier_factory_android.h" |
26 #include "net/base/network_change_notifier.h" | 26 #include "net/base/network_change_notifier.h" |
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
132 ChromeBrowserMainParts::PostBrowserStart(); | 132 ChromeBrowserMainParts::PostBrowserStart(); |
133 | 133 |
134 content::BrowserThread::GetBlockingPool()->PostDelayedTask(FROM_HERE, | 134 content::BrowserThread::GetBlockingPool()->PostDelayedTask(FROM_HERE, |
135 base::Bind(&SeccompSupportDetector::StartDetection), | 135 base::Bind(&SeccompSupportDetector::StartDetection), |
136 base::TimeDelta::FromMinutes(1)); | 136 base::TimeDelta::FromMinutes(1)); |
137 } | 137 } |
138 | 138 |
139 void ChromeBrowserMainPartsAndroid::ShowMissingLocaleMessageBox() { | 139 void ChromeBrowserMainPartsAndroid::ShowMissingLocaleMessageBox() { |
140 NOTREACHED(); | 140 NOTREACHED(); |
141 } | 141 } |
OLD | NEW |