Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(617)

Side by Side Diff: chrome/installer/util/auto_launch_util.h

Issue 8729009: Implement an AutoLaunch experiment for Chrome for certain brand codes. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
Property Changes:
Added: svn:eol-style
+ LF
OLDNEW
(Empty)
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef CHROME_INSTALLER_UTIL_AUTO_LAUNCH_UTIL_H_
6 #define CHROME_INSTALLER_UTIL_AUTO_LAUNCH_UTIL_H_
7 #pragma once
8
9 class FilePath;
10
11 // A namespace containing the platform specific implementation of setting Chrome
12 // to launch on computer startup.
13 namespace auto_launch_util {
14
15 // Returns whether Chrome is set to auto-launch at computer startup.
16 bool WillLaunchAtLogin();
grt (UTC plus 2) 2011/12/01 04:45:02 i think this should take the path to Chrome and re
17
18 // Configures whether Chrome should auto-launch at computer startup.
19 // If |auto_launch| is true, then it will auto-launch, otherwise it will be
20 // configured not to. |application_path| is the path to the Chrome application.
21 void SetWillLaunchAtLogin(bool auto_launch, const FilePath& application_path);
grt (UTC plus 2) 2011/12/01 04:45:02 in the current impl, |application_path| is the dir
22
23 } // namespace auto_launch_util
24
25 #endif // CHROME_INSTALLER_UTIL_AUTO_LAUNCH_UTIL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698