Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(71)

Side by Side Diff: chrome/browser/browser_process_platform_part.h

Issue 1586843002: Remove remote tree host and some related input and metro_driver code (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@metro-mode-3
Patch Set: remove ash_unittests from being run Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « chrome/browser/BUILD.gn ('k') | chrome/browser/browser_process_platform_part_aurawin.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_BROWSER_BROWSER_PROCESS_PLATFORM_PART_H_ 5 #ifndef CHROME_BROWSER_BROWSER_PROCESS_PLATFORM_PART_H_
6 #define CHROME_BROWSER_BROWSER_PROCESS_PLATFORM_PART_H_ 6 #define CHROME_BROWSER_BROWSER_PROCESS_PLATFORM_PART_H_
7 7
8 #include "build/build_config.h" 8 #include "build/build_config.h"
9 9
10 // Include the appropriate BrowserProcessPlatformPart based on the platform. 10 // Include the appropriate BrowserProcessPlatformPart based on the platform.
11 #if defined(OS_ANDROID) 11 #if defined(OS_ANDROID)
12 #include "chrome/browser/browser_process_platform_part_android.h" 12 #include "chrome/browser/browser_process_platform_part_android.h"
13 #elif defined(OS_CHROMEOS) 13 #elif defined(OS_CHROMEOS)
14 #include "chrome/browser/browser_process_platform_part_chromeos.h" 14 #include "chrome/browser/browser_process_platform_part_chromeos.h"
15 #elif defined(OS_MACOSX) && !defined(OS_IOS) 15 #elif defined(OS_MACOSX) && !defined(OS_IOS)
16 #include "chrome/browser/browser_process_platform_part_mac.h" 16 #include "chrome/browser/browser_process_platform_part_mac.h"
17 #elif defined(OS_WIN)
18 #include "chrome/browser/browser_process_platform_part_aurawin.h"
19 #else 17 #else
20 #include "chrome/browser/browser_process_platform_part_base.h" 18 #include "chrome/browser/browser_process_platform_part_base.h"
21 typedef BrowserProcessPlatformPartBase BrowserProcessPlatformPart; 19 typedef BrowserProcessPlatformPartBase BrowserProcessPlatformPart;
22 #endif 20 #endif
23 21
24 #endif // CHROME_BROWSER_BROWSER_PROCESS_PLATFORM_PART_H_ 22 #endif // CHROME_BROWSER_BROWSER_PROCESS_PLATFORM_PART_H_
OLDNEW
« no previous file with comments | « chrome/browser/BUILD.gn ('k') | chrome/browser/browser_process_platform_part_aurawin.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698