blob: 3bed4989365a21ddf56508f83cf5756ab30b3100 [file] [log] [blame]
[email protected]7cad6b0d2013-04-25 20:29:321// 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]f2068f92013-05-20 05:30:178#include "build/build_config.h"
Yuta Hijikata235fc62b2020-12-08 03:48:329#include "build/chromeos_buildflags.h"
[email protected]7cad6b0d2013-04-25 20:29:3210
[email protected]f2068f92013-05-20 05:30:1711// Include the appropriate BrowserProcessPlatformPart based on the platform.
Xiaohan Wang55ae2c012022-01-20 21:49:1112#if BUILDFLAG(IS_ANDROID)
[email protected]612d3bf2013-05-22 10:10:4613#include "chrome/browser/browser_process_platform_part_android.h"
Yuta Hijikata235fc62b2020-12-08 03:48:3214#elif BUILDFLAG(IS_CHROMEOS_ASH)
[email protected]f2068f92013-05-20 05:30:1715#include "chrome/browser/browser_process_platform_part_chromeos.h"
Xiaohan Wang55ae2c012022-01-20 21:49:1116#elif BUILDFLAG(IS_MAC)
[email protected]612d3bf2013-05-22 10:10:4617#include "chrome/browser/browser_process_platform_part_mac.h"
Xiaohan Wang55ae2c012022-01-20 21:49:1118#elif BUILDFLAG(IS_WIN)
Greg Thompson85bd488c2017-06-08 09:18:1119#include "chrome/browser/browser_process_platform_part_win.h"
[email protected]f2068f92013-05-20 05:30:1720#else
21#include "chrome/browser/browser_process_platform_part_base.h"
Hans Wennborg63344452019-10-15 10:15:2122class BrowserProcessPlatformPart : public BrowserProcessPlatformPartBase {};
[email protected]f2068f92013-05-20 05:30:1723#endif
[email protected]7cad6b0d2013-04-25 20:29:3224
25#endif // CHROME_BROWSER_BROWSER_PROCESS_PLATFORM_PART_H_