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..b3a931383223bdd31c119bc2451bcecdcfc09a7d 100644 |
| --- a/chrome/installer/setup/install.h |
| +++ b/chrome/installer/setup/install.h |
| @@ -23,6 +23,17 @@ class InstallationState; |
| class InstallerState; |
| class MasterPreferences; |
| +// Escape the display name as per the XML AttValue production |
| +// (http://www.w3.org/TR/2008/REC-xml-20081126/#NT-AttValue) for a value in |
| +// single quotes. |
| +void EscapeXmlAttributeValueInSingleQuotes(string16& att_value); |
|
grt (UTC plus 2)
2012/05/04 21:22:42
pass by pointer since att_value is modified.
gab
2012/05/04 23:02:09
Done.
|
| + |
| +// Creates VisualElementsManifest.xml beside chrome.exe in |src_path| if |
| +// |src_path|\VisualElements exists. |
| +// 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). |
| // |