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

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

Issue 2073123003: Update Windows start menu art (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix sprintf Created 4 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
« no previous file with comments | « no previous file | chrome/installer/setup/install_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/installer/setup/install.cc
diff --git a/chrome/installer/setup/install.cc b/chrome/installer/setup/install.cc
index 43a8ed24c7cd20bb00b3cb62f5f652e166e2e66a..9b79e56ec910ece5bbd01b8be2d4122286af88a3 100644
--- a/chrome/installer/setup/install.cc
+++ b/chrome/installer/setup/install.cc
@@ -392,8 +392,9 @@ bool CreateVisualElementsManifest(const base::FilePath& src_path,
" ShowNameOnSquare150x150Logo='on'\r\n"
" Square150x150Logo='%ls\\Logo.png'\r\n"
" Square70x70Logo='%ls\\SmallLogo.png'\r\n"
+ " Square44x44Logo='%ls\\SmallLogo.png'\r\n"
" ForegroundText='light'\r\n"
- " BackgroundColor='#323232'/>\r\n"
+ " BackgroundColor='#212121'/>\r\n"
"</Application>\r\n";
const base::string16 manifest_template(
@@ -407,8 +408,9 @@ bool CreateVisualElementsManifest(const base::FilePath& src_path,
EscapeXmlAttributeValueInSingleQuotes(&display_name);
// Fill the manifest with the desired values.
- base::string16 manifest16(base::StringPrintf(
- manifest_template.c_str(), elements_dir.c_str(), elements_dir.c_str()));
+ base::string16 manifest16(
+ base::StringPrintf(manifest_template.c_str(), elements_dir.c_str(),
+ elements_dir.c_str(), elements_dir.c_str()));
// Write the manifest to |src_path|.
const std::string manifest(base::UTF16ToUTF8(manifest16));
« no previous file with comments | « no previous file | chrome/installer/setup/install_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698