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

Side by Side Diff: chrome/installer/launcher_support/chrome_launcher_support.h

Issue 423293004: Move app_installer into chromium. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: git cl format Created 6 years, 1 month 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
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_INSTALLER_LAUNCHER_SUPPORT_CHROME_LAUNCHER_SUPPORT_H_ 5 #ifndef CHROME_INSTALLER_LAUNCHER_SUPPORT_CHROME_LAUNCHER_SUPPORT_H_
6 #define CHROME_INSTALLER_LAUNCHER_SUPPORT_CHROME_LAUNCHER_SUPPORT_H_ 6 #define CHROME_INSTALLER_LAUNCHER_SUPPORT_CHROME_LAUNCHER_SUPPORT_H_
7 7
8 namespace base { 8 namespace base {
9 class FilePath; 9 class FilePath;
10 } 10 }
(...skipping 10 matching lines...) Expand all
21 // but may also return that of a single-install of Chrome if no multi-install 21 // but may also return that of a single-install of Chrome if no multi-install
22 // exists. 22 // exists.
23 base::FilePath GetChromePathForInstallationLevel(InstallationLevel level); 23 base::FilePath GetChromePathForInstallationLevel(InstallationLevel level);
24 24
25 // Returns the path to an installed chrome.exe, or an empty path. Prefers a 25 // Returns the path to an installed chrome.exe, or an empty path. Prefers a
26 // system-level installation to a user-level installation. Uses Omaha client 26 // system-level installation to a user-level installation. Uses Omaha client
27 // state to identify a Chrome installation location. 27 // state to identify a Chrome installation location.
28 // The file path returned (if any) is guaranteed to exist. 28 // The file path returned (if any) is guaranteed to exist.
29 base::FilePath GetAnyChromePath(); 29 base::FilePath GetAnyChromePath();
30 30
31 // Returns the path to an installed SxS chrome.exe, or an empty path. Prefers a
32 // user-level installation to a system-level installation. Uses Omaha client
33 // state to identify a Chrome Canary installation location.
34 // The file path returned (if any) is guaranteed to exist.
35 base::FilePath GetAnyChromeSxSPath();
36
31 } // namespace chrome_launcher_support 37 } // namespace chrome_launcher_support
32 38
33 #endif // CHROME_INSTALLER_LAUNCHER_SUPPORT_CHROME_LAUNCHER_SUPPORT_H_ 39 #endif // CHROME_INSTALLER_LAUNCHER_SUPPORT_CHROME_LAUNCHER_SUPPORT_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698