#ifndef CHROME_BROWSER_UI_WEBUI_OPTIONS_OPTIONS_HANDLERS_HELPER_H_
#define CHROME_BROWSER_UI_WEBUI_OPTIONS_OPTIONS_HANDLERS_HELPER_H_
#include "base/files/file_path.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/ui/host_desktop.h"
namespace content {
class WebUI;
}
namespace options {
namespace helper {
chrome::HostDesktopType GetDesktopType(content::WebUI* web_ui);
void OpenNewWindowForProfile(chrome::HostDesktopType desktop_type,
Profile* profile,
Profile::CreateStatus status);
void DeleteProfileAtPath(base::FilePath file_path, content::WebUI* web_ui);
}
}
#endif