Index: chrome/installer/util/auto_launch_util.h |
=================================================================== |
--- chrome/installer/util/auto_launch_util.h (revision 0) |
+++ chrome/installer/util/auto_launch_util.h (revision 0) |
@@ -0,0 +1,30 @@ |
+// 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_INSTALLER_UTIL_AUTO_LAUNCH_UTIL_H_ |
+#define CHROME_INSTALLER_UTIL_AUTO_LAUNCH_UTIL_H_ |
+#pragma once |
+ |
+class FilePath; |
+ |
+// A namespace containing the platform specific implementation of setting Chrome |
+// to launch on computer startup. |
+namespace auto_launch_util { |
+ |
+// Returns whether the Chrome executable specified in |executable| is set to |
+// auto-launch at computer startup. NOTE: |executable| is optional and should be |
+// blank in most cases (as it will default to the current executable). |
+bool WillLaunchAtLogin(const FilePath& executable); |
+ |
+// Configures whether chrome.exe in |application_path| (or the directory of the |
+// current executable) should auto-launch at computer startup. |
+// NOTE: |application_path| is optional and should be blank in most cases (will |
+// default to the chrome application path), but can be overridden if needed. If |
grt (UTC plus 2)
2011/12/13 17:08:55
i find this NOTE confusing. |application_path| ma
|
+// |auto_launch| is true, then it will auto-launch, otherwise it will be |
+// configured not to. |
+void SetWillLaunchAtLogin(bool auto_launch, const FilePath& application_path); |
+ |
+} // namespace auto_launch_util |
+ |
+#endif // CHROME_INSTALLER_UTIL_AUTO_LAUNCH_UTIL_H_ |
Property changes on: chrome\installer\util\auto_launch_util.h |
___________________________________________________________________ |
Added: svn:eol-style |
+ LF |