#ifndef CHROME_BROWSER_BROWSER_PROCESS_PLATFORM_PART_H_
#define CHROME_BROWSER_BROWSER_PROCESS_PLATFORM_PART_H_
#include "build/build_config.h"
#include "build/chromeos_buildflags.h"
#if BUILDFLAG(IS_ANDROID)
#include "chrome/browser/browser_process_platform_part_android.h"
#elif BUILDFLAG(IS_CHROMEOS_ASH)
#include "chrome/browser/browser_process_platform_part_ash.h"
#elif BUILDFLAG(IS_CHROMEOS_LACROS)
#include "chrome/browser/browser_process_platform_part_chromeos.h"
class BrowserProcessPlatformPart : public BrowserProcessPlatformPartChromeOS {};
#elif BUILDFLAG(IS_MAC)
#include "chrome/browser/browser_process_platform_part_mac.h"
#else
#include "chrome/browser/browser_process_platform_part_base.h"
class BrowserProcessPlatformPart : public BrowserProcessPlatformPartBase { … };
#endif
#endif