#ifndef CHROME_BROWSER_BROWSER_PROCESS_PLATFORM_PART_CHROMEOS_H_
#define CHROME_BROWSER_BROWSER_PROCESS_PLATFORM_PART_CHROMEOS_H_
#include "base/compiler_specific.h"
#include "base/memory/scoped_ptr.h"
#include "base/threading/non_thread_safe.h"
#include "chrome/browser/browser_process_platform_part_base.h"
namespace chromeos {
class OomPriorityManager;
class ProfileHelper;
}
namespace chromeos {
namespace system {
class AutomaticRebootManager;
}
}
namespace policy {
class BrowserPolicyConnector;
class BrowserPolicyConnectorChromeOS;
}
class BrowserProcessPlatformPart : public BrowserProcessPlatformPartBase,
public base::NonThreadSafe {
public:
BrowserProcessPlatformPart();
virtual ~BrowserProcessPlatformPart();
void InitializeAutomaticRebootManager();
void ShutdownAutomaticRebootManager();
virtual chromeos::OomPriorityManager* oom_priority_manager();
chromeos::ProfileHelper* profile_helper();
chromeos::system::AutomaticRebootManager* automatic_reboot_manager() {
return automatic_reboot_manager_.get();
}
policy::BrowserPolicyConnectorChromeOS* browser_policy_connector_chromeos();
virtual void StartTearDown() OVERRIDE;
virtual scoped_ptr<policy::BrowserPolicyConnector>
CreateBrowserPolicyConnector() OVERRIDE;
private:
void CreateProfileHelper();
bool created_profile_helper_;
scoped_ptr<chromeos::ProfileHelper> profile_helper_;
scoped_ptr<chromeos::OomPriorityManager> oom_priority_manager_;
scoped_ptr<chromeos::system::AutomaticRebootManager>
automatic_reboot_manager_;
DISALLOW_COPY_AND_ASSIGN(BrowserProcessPlatformPart);
};
#endif