#ifndef CHROME_COMMON_AUTO_START_LINUX_H_
#define CHROME_COMMON_AUTO_START_LINUX_H_
#include <string>
namespace base {
class FilePath;
class Environment;
}
class AutoStart {
public:
AutoStart() = delete;
AutoStart(const AutoStart&) = delete;
AutoStart& operator=(const AutoStart&) = delete;
static bool AddApplication(const std::string& autostart_filename,
const std::string& application_name,
const std::string& command_line,
bool is_terminal_app);
static bool Remove(const std::string& autostart_filename);
static bool GetAutostartFileContents(const std::string& autostart_filename,
std::string* contents);
static bool GetAutostartFileValue(const std::string& autostart_filename,
const std::string& value_name,
std::string* value);
static base::FilePath GetAutostartDirectory(base::Environment* environment);
};
#endif