#ifndef CHROME_BROWSER_BROWSER_PROCESS_PLATFORM_PART_MAC_H_
#define CHROME_BROWSER_BROWSER_PROCESS_PLATFORM_PART_MAC_H_
#include "apps/app_shim/app_shim_host_manager_mac.h"
#include "base/compiler_specific.h"
#include "base/memory/scoped_ptr.h"
#include "chrome/browser/browser_process_platform_part_base.h"
namespace apps {
class ExtensionAppShimHandler;
}
class BrowserProcessPlatformPart : public BrowserProcessPlatformPartBase {
public:
BrowserProcessPlatformPart();
virtual ~BrowserProcessPlatformPart();
virtual void StartTearDown() OVERRIDE;
virtual void AttemptExit() OVERRIDE;
virtual void PreMainMessageLoopRun() OVERRIDE;
AppShimHostManager* app_shim_host_manager();
private:
scoped_refptr<AppShimHostManager> app_shim_host_manager_;
DISALLOW_COPY_AND_ASSIGN(BrowserProcessPlatformPart);
};
#endif