Avi Drissman | 4a8573c | 2022-09-09 19:35:54 | [diff] [blame] | 1 | // Copyright 2013 The Chromium Authors |
[email protected] | 7cad6b0d | 2013-04-25 20:29: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 | #ifndef CHROME_BROWSER_BROWSER_PROCESS_PLATFORM_PART_H_ | ||||
6 | #define CHROME_BROWSER_BROWSER_PROCESS_PLATFORM_PART_H_ | ||||
7 | |||||
[email protected] | f2068f9 | 2013-05-20 05:30:17 | [diff] [blame] | 8 | #include "build/build_config.h" |
[email protected] | 7cad6b0d | 2013-04-25 20:29:32 | [diff] [blame] | 9 | |
[email protected] | f2068f9 | 2013-05-20 05:30:17 | [diff] [blame] | 10 | // Include the appropriate BrowserProcessPlatformPart based on the platform. |
Xiaohan Wang | 55ae2c01 | 2022-01-20 21:49:11 | [diff] [blame] | 11 | #if BUILDFLAG(IS_ANDROID) |
Ben Franz | a325aff4 | 2022-07-18 11:06:35 | [diff] [blame] | 12 | #include "chrome/browser/browser_process_platform_part_android.h" // IWYU pragma: export |
Georg Neis | e5b6cbd | 2025-02-20 08:00:38 | [diff] [blame] | 13 | #elif BUILDFLAG(IS_CHROMEOS) |
Ben Franz | a325aff4 | 2022-07-18 11:06:35 | [diff] [blame] | 14 | #include "chrome/browser/browser_process_platform_part_ash.h" // IWYU pragma: export |
Xiaohan Wang | 55ae2c01 | 2022-01-20 21:49:11 | [diff] [blame] | 15 | #elif BUILDFLAG(IS_MAC) |
Ben Franz | a325aff4 | 2022-07-18 11:06:35 | [diff] [blame] | 16 | #include "chrome/browser/browser_process_platform_part_mac.h" // IWYU pragma: export |
[email protected] | f2068f9 | 2013-05-20 05:30:17 | [diff] [blame] | 17 | #else |
Ben Franz | a325aff4 | 2022-07-18 11:06:35 | [diff] [blame] | 18 | #include "chrome/browser/browser_process_platform_part_base.h" // IWYU pragma: export |
Hans Wennborg | 6334445 | 2019-10-15 10:15:21 | [diff] [blame] | 19 | class BrowserProcessPlatformPart : public BrowserProcessPlatformPartBase {}; |
[email protected] | f2068f9 | 2013-05-20 05:30:17 | [diff] [blame] | 20 | #endif |
[email protected] | 7cad6b0d | 2013-04-25 20:29:32 | [diff] [blame] | 21 | |
22 | #endif // CHROME_BROWSER_BROWSER_PROCESS_PLATFORM_PART_H_ |