blob: e87d007862cb3878e0eef61b1c108c761d019e1c [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"
[email protected]7cad6b0d2013-04-25 20:29:329
[email protected]f2068f92013-05-20 05:30:1710// Include the appropriate BrowserProcessPlatformPart based on the platform.
[email protected]612d3bf2013-05-22 10:10:4611#if defined(OS_ANDROID)
12#include "chrome/browser/browser_process_platform_part_android.h"
13#elif defined(OS_CHROMEOS)
[email protected]f2068f92013-05-20 05:30:1714#include "chrome/browser/browser_process_platform_part_chromeos.h"
jam1c5a91492016-02-24 20:47:5315#elif defined(OS_MACOSX)
[email protected]612d3bf2013-05-22 10:10:4616#include "chrome/browser/browser_process_platform_part_mac.h"
Greg Thompson85bd488c2017-06-08 09:18:1117#elif defined(OS_WIN)
18#include "chrome/browser/browser_process_platform_part_win.h"
[email protected]f2068f92013-05-20 05:30:1719#else
20#include "chrome/browser/browser_process_platform_part_base.h"
21typedef BrowserProcessPlatformPartBase BrowserProcessPlatformPart;
22#endif
[email protected]7cad6b0d2013-04-25 20:29:3223
24#endif // CHROME_BROWSER_BROWSER_PROCESS_PLATFORM_PART_H_