[email protected] | 7cad6b0d | 2013-04-25 20:29:32 | [diff] [blame] | 1 | // Copyright (c) 2013 The Chromium Authors. All rights reserved. |
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. |
[email protected] | 612d3bf | 2013-05-22 10:10:46 | [diff] [blame] | 11 | #if defined(OS_ANDROID) |
12 | #include "chrome/browser/browser_process_platform_part_android.h" | ||||
13 | #elif defined(OS_CHROMEOS) | ||||
[email protected] | f2068f9 | 2013-05-20 05:30:17 | [diff] [blame] | 14 | #include "chrome/browser/browser_process_platform_part_chromeos.h" |
jam | 1c5a9149 | 2016-02-24 20:47:53 | [diff] [blame] | 15 | #elif defined(OS_MACOSX) |
[email protected] | 612d3bf | 2013-05-22 10:10:46 | [diff] [blame] | 16 | #include "chrome/browser/browser_process_platform_part_mac.h" |
Greg Thompson | 85bd488c | 2017-06-08 09:18:11 | [diff] [blame] | 17 | #elif defined(OS_WIN) |
18 | #include "chrome/browser/browser_process_platform_part_win.h" | ||||
[email protected] | f2068f9 | 2013-05-20 05:30:17 | [diff] [blame] | 19 | #else |
20 | #include "chrome/browser/browser_process_platform_part_base.h" | ||||
21 | typedef BrowserProcessPlatformPartBase BrowserProcessPlatformPart; | ||||
22 | #endif | ||||
[email protected] | 7cad6b0d | 2013-04-25 20:29:32 | [diff] [blame] | 23 | |
24 | #endif // CHROME_BROWSER_BROWSER_PROCESS_PLATFORM_PART_H_ |