[email protected] | 37cc804 | 2012-02-27 19:32:58 | [diff] [blame] | 1 | // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
[email protected] | 93623c5d | 2009-12-10 21:40:32 | [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/renderer_preferences_util.h" | ||||
6 | |||||
Adam Rice | 3d178a8 | 2021-04-12 13:49:53 | [diff] [blame] | 7 | #include <stdint.h> |
8 | |||||
guidou | ca055a54 | 2016-08-11 11:15:53 | [diff] [blame] | 9 | #include <string> |
Adam Rice | 3d178a8 | 2021-04-12 13:49:53 | [diff] [blame] | 10 | #include <vector> |
guidou | ca055a54 | 2016-08-11 11:15:53 | [diff] [blame] | 11 | |
guidou | ca055a54 | 2016-08-11 11:15:53 | [diff] [blame] | 12 | #include "base/strings/string_number_conversions.h" |
13 | #include "base/strings/string_util.h" | ||||
avi | b896c71 | 2015-12-26 02:10:43 | [diff] [blame] | 14 | #include "build/build_config.h" |
Yuta Hijikata | 235fc62b | 2020-12-08 03:48:32 | [diff] [blame] | 15 | #include "build/chromeos_buildflags.h" |
John Abd-El-Malek | 7d032b37 | 2019-05-07 18:01:31 | [diff] [blame] | 16 | #include "chrome/browser/browser_process.h" |
Adam Rice | 3d178a8 | 2021-04-12 13:49:53 | [diff] [blame] | 17 | #include "chrome/browser/net/convert_explicitly_allowed_network_ports_pref.h" |
Yves Arrouye | 39b8ef6 | 2021-02-23 00:39:29 | [diff] [blame] | 18 | #if BUILDFLAG(IS_CHROMEOS_ASH) |
Henrique Ferreiro | 606669a | 2021-02-24 13:36:55 | [diff] [blame] | 19 | #include "chrome/browser/ash/login/demo_mode/demo_session.h" |
Yves Arrouye | 39b8ef6 | 2021-02-23 00:39:29 | [diff] [blame] | 20 | #endif |
[email protected] | 8ecad5e | 2010-12-02 21:18:33 | [diff] [blame] | 21 | #include "chrome/browser/profiles/profile.h" |
Dominic Mazzoni | 554089e | 2020-07-31 22:12:04 | [diff] [blame] | 22 | #include "chrome/browser/profiles/profile_manager.h" |
[email protected] |