blob: e360549bf8eec9afebc929779cea492597d2e74d [file] [log] [blame]
Avi Drissman4a8573c2022-09-09 19:35:541// Copyright 2013 The Chromium Authors
[email protected]7cad6b0d2013-04-25 20:29:322// 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]f2068f92013-05-20 05:30:178#include "build/build_config.h"
[email protected]7cad6b0d2013-04-25 20:29:329
[email protected]f2068f92013-05-20 05:30:1710// Include the appropriate BrowserProcessPlatformPart based on the platform.
Xiaohan Wang55ae2c012022-01-20 21:49:1111#if BUILDFLAG(IS_ANDROID)
Ben Franza325aff42022-07-18 11:06:3512#include "chrome/browser/browser_process_platform_part_android.h" // IWYU pragma: export
Georg Neise5b6cbd2025-02-20 08:00:3813#elif BUILDFLAG(IS_CHROMEOS)
Ben Franza325aff42022-07-18 11:06:3514#include "chrome/browser/browser_process_platform_part_ash.h" // IWYU pragma: export
Xiaohan Wang55ae2c012022-01-20 21:49:1115#elif BUILDFLAG(IS_MAC)
Ben Franza325aff42022-07-18 11:06:3516#include "chrome/browser/browser_process_platform_part_mac.h" // IWYU pragma: export
[email protected]f2068f92013-05-20 05:30:1717#else
Ben Franza325aff42022-07-18 11:06:3518#include "chrome/browser/browser_process_platform_part_base.h" // IWYU pragma: export
Hans Wennborg63344452019-10-15 10:15:2119class BrowserProcessPlatformPart : public BrowserProcessPlatformPartBase {};
[email protected]f2068f92013-05-20 05:30:1720#endif
[email protected]7cad6b0d2013-04-25 20:29:3221
22#endif // CHROME_BROWSER_BROWSER_PROCESS_PLATFORM_PART_H_