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

Unified Diff: chrome/installer/setup/install.h

Issue 2933043002: Installer support for Windows 10 inactive user toast. (Closed)
Patch Set: two studies Created 3 years, 6 months 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 side-by-side diff with in-line comments
Download patch
Index: chrome/installer/setup/install.h
diff --git a/chrome/installer/setup/install.h b/chrome/installer/setup/install.h
index 20ebd55d91f49121dc0f49be627169532d890d06..fcfe4db11e423297760cd5b5892964d6009a444b 100644
--- a/chrome/installer/setup/install.h
+++ b/chrome/installer/setup/install.h
@@ -11,6 +11,7 @@
#include "chrome/installer/util/util_constants.h"
namespace base {
+class CommandLine;
class FilePath;
class Version;
}
@@ -124,15 +125,13 @@ void HandleOsUpgradeForBrowser(const InstallerState& installer_state,
const base::Version& installed_version);
// Performs per-user installation-related tasks on Active Setup (ran on first
-// login for each user post system-level Chrome install).
-// |installation_root|: The root of this install (i.e. the directory in which
-// chrome.exe is installed).
-// Shortcut creation is skipped if the First Run beacon is present (unless
-// |force| is set to true).
-// |chrome| The installed product (must be a browser).
-void HandleActiveSetupForBrowser(const base::FilePath& installation_root,
- const Product& chrome,
- bool force);
+// login for each user post system-level Chrome install). Shortcut creation is
+// skipped if the First Run beacon is present (unless |force| is set to true).
+void HandleActiveSetupForBrowser(bool force,
+ const base::CommandLine& command_line,
+ const MasterPreferences& master_preferences,
+ InstallationState* original_state,
+ InstallerState* installer_state);
} // namespace installer

Powered by Google App Engine
This is Rietveld 408576698