1 // 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.
5 #ifndef CHROME_BROWSER_BROWSER_PROCESS_PLATFORM_PART_H_
6 #define CHROME_BROWSER_BROWSER_PROCESS_PLATFORM_PART_H_
8 #include "build/build_config.h"
10 // Include the appropriate BrowserProcessPlatformPart based on the platform.
11 #if defined(OS_ANDROID)
12 #include "chrome/browser/browser_process_platform_part_android.h"
13 #elif defined(OS_CHROMEOS)
14 #include "chrome/browser/browser_process_platform_part_chromeos.h"
15 #elif defined(OS_MACOSX) && !defined(OS_IOS)
16 #include "chrome/browser/browser_process_platform_part_mac.h"
17 #elif defined(OS_WIN) && defined(USE_AURA)
18 #include "chrome/browser/browser_process_platform_part_aurawin.h"
20 #include "chrome/browser/browser_process_platform_part_base.h"
21 typedef BrowserProcessPlatformPartBase BrowserProcessPlatformPart
;
24 #endif // CHROME_BROWSER_BROWSER_PROCESS_PLATFORM_PART_H_