[email protected] | 3b63f8f4 | 2011-03-28 01:54:15 | [diff] [blame] | 1 | // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
[email protected] | 288bfcd3 | 2009-09-14 18:14:46 | [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 | #import <Cocoa/Cocoa.h> | ||||
6 | |||||
David Roger | 5179764 | 2018-03-20 13:29:16 | [diff] [blame] | 7 | #include "base/bind_helpers.h" |
[email protected] | 1c62b2f | 2013-06-28 00:15:00 | [diff] [blame] | 8 | #include "base/files/file_path.h" |
[email protected] | a852203 | 2013-06-24 22:51:46 | [diff] [blame] | 9 | #include "base/mac/scoped_nsobject.h" |
[email protected] | de6b8ecf | 2013-09-16 21:47:31 | [diff] [blame] | 10 | #include "base/run_loop.h" |
andresantoso | 55fd251 | 2015-04-01 21:07:04 | [diff] [blame] | 11 | #include "base/strings/utf_string_conversions.h" |
[email protected] | 1a3aba8 | 2010-11-08 23:52:54 | [diff] [blame] | 12 | #include "chrome/app/chrome_command_ids.h" |
[email protected] | 288bfcd3 | 2009-09-14 18:14:46 | [diff] [blame] | 13 | #import "chrome/browser/app_controller_mac.h" |
[email protected] | de6b8ecf | 2013-09-16 21:47:31 | [diff] [blame] | 14 | #include "chrome/browser/browser_process.h" |
[email protected] | 1c62b2f | 2013-06-28 00:15:00 | [diff] [blame] | 15 | #include "chrome/browser/profiles/profile_manager.h" |
16 | #include "chrome/common/chrome_constants.h" | ||||
17 | #include "chrome/common/pref_names.h" | ||||
[email protected] | de6b8ecf | 2013-09-16 21:47:31 | [diff] [blame] | 18 | #include "chrome/test/base/testing_browser_process.h" |
19 | #include "chrome/test/base/testing_profile.h" | ||||
[email protected] | 1c62b2f | 2013-06-28 00:15:00 | [diff] [blame] | 20 | #include "chrome/test/base/testing_profile_manager.h" |
Gabriel Charette | c710874 | 2019-08-23 03:31:40 | [diff] [blame] | 21 | #include "content/public/test/browser_task_environment.h" |
[email protected] | 288bfcd3 | 2009-09-14 18:14:46 | [ |