[email protected] | 81ce2c4 | 2012-03-24 01:43:26 | [diff] [blame] | 1 | // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
[email protected] | b48c918 | 2011-10-26 18:03:30 | [diff] [blame] | 2 | // Use of this source code is governed by a BSD-style license that can be |
3 | // found in the LICENSE file. | ||||
4 | |||||
5 | #include "chrome/browser/chrome_browser_main_linux.h" | ||||
6 | |||||
[email protected] | dd357e1 | 2014-08-22 01:28:50 | [diff] [blame] | 7 | #include <fontconfig/fontconfig.h> |
8 | |||||
cfroussios | 3ea4c69 | 2016-07-18 19:15:14 | [diff] [blame] | 9 | #include <string> |
10 | |||||
fdoray | f78be974 | 2017-02-07 16:15:17 | [diff] [blame^] | 11 | #include "base/task_scheduler/post_task.h" |
avi | e4d7b6f | 2015-12-26 00:59:18 | [diff] [blame] | 12 | #include "build/build_config.h" |
[email protected] | 9742508 | 2013-07-16 03:10:07 | [diff] [blame] | 13 | #include "chrome/browser/browser_process.h" |
thestig | d2efdad | 2015-09-02 18:03:09 | [diff] [blame] | 14 | #include "chrome/grit/chromium_strings.h" |
sdefresne | 8ba0b88c | 2015-09-18 10:33:13 | [diff] [blame] | 15 | #include "components/crash/content/app/breakpad_linux.h" |
[email protected] | d6147bd | 2014-06-11 01:58:19 | [diff] [blame] | 16 | #include "components/metrics/metrics_service.h" |
rkc | 4107704 | 2015-11-06 07:20:58 | [diff] [blame] | 17 | #include "device/bluetooth/dbus/bluez_dbus_manager.h" |
18 | #include "device/bluetooth/dbus/dbus_thread_manager_linux.h" | ||||
thestig | d2efdad | 2015-09-02 18:03:09 | [diff] [blame] | 19 | #include "media/audio/audio_manager.h" |
20 | #include "ui/base/l10n/l10n_util.h" | ||||
[email protected] | a5e8c6d4 | 2012-04-09 20:22:01 | [diff] [blame] | 21 | |
[email protected] | 6664958a | 2013-11-07 08:35:29 | [diff] [blame] | 22 | #if !defined(OS_CHROMEOS) |
cfroussios | 3ea4c69 | 2016-07-18 19:15:14 | [diff] [ |