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

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

Issue 2530053003: chrome: Cleanup class/struct forward declarations (Closed)
Patch Set: Rebase + address comment Created 4 years 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
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_MAC_H_ 5 #ifndef CHROME_BROWSER_BROWSER_PROCESS_PLATFORM_PART_MAC_H_
6 #define CHROME_BROWSER_BROWSER_PROCESS_PLATFORM_PART_MAC_H_ 6 #define CHROME_BROWSER_BROWSER_PROCESS_PLATFORM_PART_MAC_H_
7 7
8 #include <memory> 8 #include <memory>
9 9
10 #include "base/compiler_specific.h" 10 #include "base/compiler_specific.h"
11 #include "base/macros.h" 11 #include "base/macros.h"
12 #include "chrome/browser/apps/app_shim/app_shim_host_manager_mac.h" 12 #include "chrome/browser/apps/app_shim/app_shim_host_manager_mac.h"
13 #include "chrome/browser/browser_process_platform_part_base.h" 13 #include "chrome/browser/browser_process_platform_part_base.h"
14 14
15 namespace apps {
16 class ExtensionAppShimHandler;
17 }
18
19 class BrowserProcessPlatformPart : public BrowserProcessPlatformPartBase { 15 class BrowserProcessPlatformPart : public BrowserProcessPlatformPartBase {
20 public: 16 public:
21 BrowserProcessPlatformPart(); 17 BrowserProcessPlatformPart();
22 ~BrowserProcessPlatformPart() override; 18 ~BrowserProcessPlatformPart() override;
23 19
24 // Overridden from BrowserProcessPlatformPartBase: 20 // Overridden from BrowserProcessPlatformPartBase:
25 void StartTearDown() override; 21 void StartTearDown() override;
26 void AttemptExit() override; 22 void AttemptExit() override;
27 void PreMainMessageLoopRun() override; 23 void PreMainMessageLoopRun() override;
28 24
29 AppShimHostManager* app_shim_host_manager(); 25 AppShimHostManager* app_shim_host_manager();
30 26
31 private: 27 private:
32 // Hosts the IPC channel factory that App Shims connect to on Mac. 28 // Hosts the IPC channel factory that App Shims connect to on Mac.
33 scoped_refptr<AppShimHostManager> app_shim_host_manager_; 29 scoped_refptr<AppShimHostManager> app_shim_host_manager_;
34 30
35 DISALLOW_COPY_AND_ASSIGN(BrowserProcessPlatformPart); 31 DISALLOW_COPY_AND_ASSIGN(BrowserProcessPlatformPart);
36 }; 32 };
37 33
38 #endif // CHROME_BROWSER_BROWSER_PROCESS_PLATFORM_PART_MAC_H_ 34 #endif // CHROME_BROWSER_BROWSER_PROCESS_PLATFORM_PART_MAC_H_
OLDNEW
« no previous file with comments | « chrome/browser/browser_process.h ('k') | chrome/browser/browsing_data/browsing_data_counter_utils.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698