blob: fed32627b873af33078ebfd97d476baeb7f1aa78 [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"
[email protected]f2068f92013-05-20 05:30:1717#else
18#include "chrome/browser/browser_process_platform_part_base.h"
19typedef BrowserProcessPlatformPartBase BrowserProcessPlatformPart;
20#endif
[email protected]7cad6b0d2013-04-25 20:29:3221
22#endif // CHROME_BROWSER_BROWSER_PROCESS_PLATFORM_PART_H_