Chromium Code Reviews| Index: chrome/installer/setup/install.h |
| diff --git a/chrome/installer/setup/install.h b/chrome/installer/setup/install.h |
| index 370c51e46053630e40da6a52718d530d760139e7..d984754464c06529a39155c3ce025c406f8be033 100644 |
| --- a/chrome/installer/setup/install.h |
| +++ b/chrome/installer/setup/install.h |
| @@ -11,6 +11,7 @@ |
| #include <string> |
| #include <vector> |
| +#include "base/file_path.h" |
|
grt (UTC plus 2)
2012/05/03 20:01:50
remove this (there's a forward decl on line 19)
gab
2012/05/04 00:04:12
Ah kk, I'll put it back in the .cc then.
|
| #include "base/version.h" |
| #include "chrome/installer/util/product.h" |
| #include "chrome/installer/util/util_constants.h" |
| @@ -23,6 +24,14 @@ class InstallationState; |
| class InstallerState; |
| class MasterPreferences; |
| +// Creates VisualElementsManifest.xml beside chrome.exe in |src_path| if |
| +// |src_path|\VisualElements exists. |
| +// If |installer_state| is not NULL, updates the stage to |
|
grt (UTC plus 2)
2012/05/03 20:01:50
remove this part of the comment
gab
2012/05/04 00:04:12
Indeed..
|
| +// CREATING_VISUAL_MANIFEST. |
| +// Returns true unless the manifest is supposed to be created, but fails to be. |
| +bool CreateVisualElementsManifest(const FilePath& src_path, |
| + const Version& version); |
| + |
| // This function installs or updates a new version of Chrome. It returns |
| // install status (failed, new_install, updated etc). |
| // |