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

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

Issue 10823437: Callback flow to register Chrome and update shortcuts after OS upgrade to Windows 8 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Refactoring; renamed OnOsUpgrade() to HandleOsUpgradeForBrowser(). Created 8 years, 3 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | chrome/installer/setup/install.cc » ('j') | chrome/installer/setup/install.cc » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 // This file contains the specification of setup main functions. 5 // This file contains the specification of setup main functions.
6 6
7 #ifndef CHROME_INSTALLER_SETUP_INSTALL_H_ 7 #ifndef CHROME_INSTALLER_SETUP_INSTALL_H_
8 #define CHROME_INSTALLER_SETUP_INSTALL_H_ 8 #define CHROME_INSTALLER_SETUP_INSTALL_H_
9 9
10 #include <vector> 10 #include <vector>
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after
95 InstallStatus InstallOrUpdateProduct( 95 InstallStatus InstallOrUpdateProduct(
96 const InstallationState& original_state, 96 const InstallationState& original_state,
97 const InstallerState& installer_state, 97 const InstallerState& installer_state,
98 const FilePath& setup_path, 98 const FilePath& setup_path,
99 const FilePath& archive_path, 99 const FilePath& archive_path,
100 const FilePath& install_temp_path, 100 const FilePath& install_temp_path,
101 const FilePath& prefs_path, 101 const FilePath& prefs_path,
102 const installer::MasterPreferences& prefs, 102 const installer::MasterPreferences& prefs,
103 const Version& new_version); 103 const Version& new_version);
104 104
105 // Performs installation-related tasks following an OS upgrade.
106 // Returns true if all tasks succeed.
107 bool HandleOsUpgradeForBrowser(const InstallerState& installer_state,
108 const Product& chrome_install,
109 const FilePath& setup_exe);
110
105 } // namespace installer 111 } // namespace installer
106 112
107 #endif // CHROME_INSTALLER_SETUP_INSTALL_H_ 113 #endif // CHROME_INSTALLER_SETUP_INSTALL_H_
OLDNEW
« no previous file with comments | « no previous file | chrome/installer/setup/install.cc » ('j') | chrome/installer/setup/install.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698