diff options
author | sanjeevr@chromium.org <sanjeevr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-02-23 02:45:34 +0000 |
---|---|---|
committer | sanjeevr@chromium.org <sanjeevr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-02-23 02:45:34 +0000 |
commit | b907defea0f7059faa4502f505d793fd272860d2 (patch) | |
tree | 121f160f20893a4ba8841dab5980aa6c61d001e7 /chrome/common/auto_start_linux.h | |
parent | b1d454e9a59d482da63eba58ac6e08654524c996 (diff) | |
download | chromium_src-b907defea0f7059faa4502f505d793fd272860d2.zip chromium_src-b907defea0f7059faa4502f505d793fd272860d2.tar.gz chromium_src-b907defea0f7059faa4502f505d793fd272860d2.tar.bz2 |
Moved common parts of Linux autostart code to chrome/common so it can be reused in the service process as well.
BUG=None
TEST=None
Review URL: http://codereview.chromium.org/6546024
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@75699 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/auto_start_linux.h')
-rw-r--r-- | chrome/common/auto_start_linux.h | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/chrome/common/auto_start_linux.h b/chrome/common/auto_start_linux.h new file mode 100644 index 0000000..9d7cdf0c --- /dev/null +++ b/chrome/common/auto_start_linux.h @@ -0,0 +1,28 @@ +// Copyright (c) 2011 The Chromium Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +#ifndef CHROME_COMMON_AUTO_START_LINUX_H_ +#define CHROME_COMMON_AUTO_START_LINUX_H_ +#pragma once + +#include <string> + +#include "base/basictypes.h" + +class AutoStart { + public: + // Registers an application to autostart on user login. |is_terminal_app| + // specifies whether the app will run in a terminal window. + static bool AddApplication(const std::string& autostart_filename, + const std::string& application_name, + const std::string& command_line, + bool is_terminal_app); + // Removes an autostart file. + static bool Remove(const std::string& autostart_filename); + + private: + DISALLOW_IMPLICIT_CONSTRUCTORS(AutoStart); +}; + +#endif // CHROME_COMMON_AUTO_START_LINUX_H_ |