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

Side by Side Diff: chrome/installer/setup/setup_install_details.h

Issue 2459583002: Use InstallDetails in setup. (Closed)
Patch Set: Created 4 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
OLDNEW
(Empty)
1 // Copyright 2016 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 // Contains functions for determining the installer's InstallDetails at runtime.
6 // See chrome/install_static/install_details.h for more information.
7
8 #ifndef CHROME_INSTALLER_SETUP_SETUP_INSTALL_DETAILS_H_
9 #define CHROME_INSTALLER_SETUP_SETUP_INSTALL_DETAILS_H_
10
11 namespace base {
12 class CommandLine;
13 }
14 namespace installer {
15 class InstallerState;
16 class MasterPreferences;
17 }
18
19 // Creates a PrimaryInstallDetails instance for the installer and makes it the
20 // global InstallDetails for the process.
21 void InitializeInstallDetails(
22 const base::CommandLine& command_line,
23 const installer::MasterPreferences& master_preferences,
24 const installer::InstallerState& installer_state);
25
26 #endif // CHROME_INSTALLER_SETUP_SETUP_INSTALL_DETAILS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698