summaryrefslogtreecommitdiffstats
path: root/win8
diff options
context:
space:
mode:
authorscottmg <scottmg@chromium.org>2015-11-12 10:47:17 -0800
committerCommit bot <commit-bot@chromium.org>2015-11-12 18:48:49 +0000
commit63a8d3b86b0f45d7c99c85ae57f45ba208254680 (patch)
tree712e06dfe8f1783e41e921c166ec42a3e5d64a04 /win8
parentc4d2f706ca387dcaca9ba719c6d7e08f570e4cea (diff)
downloadchromium_src-63a8d3b86b0f45d7c99c85ae57f45ba208254680.zip
chromium_src-63a8d3b86b0f45d7c99c85ae57f45ba208254680.tar.gz
chromium_src-63a8d3b86b0f45d7c99c85ae57f45ba208254680.tar.bz2
Fix small tile icon disappearing on Win10 10586
My best guess is that TH2 breaks the Metro path for VisualManifest for small icons (which is what we were using). Switching to the other (newer?) format seems to work. I'm not sure if this means that the Metro tile on maybe plain Win8 will be broken though. Any thoughts? Also, updated to new "flat" icons for the tiles (they're already in the icon resources, but we missed the tiles in the previous update I think). R=grt@chromium.org BUG=554439, 517654 Review URL: https://codereview.chromium.org/1441463002 Cr-Commit-Position: refs/heads/master@{#359345}
Diffstat (limited to 'win8')
-rw-r--r--win8/metro_driver/metro_driver.gyp3
-rw-r--r--win8/metro_driver/resources/Logo.pngbin3970 -> 27252 bytes
-rw-r--r--win8/metro_driver/resources/SmallLogo.pngbin9285 -> 27252 bytes
-rw-r--r--win8/metro_driver/resources/VisualElementsManifest.xml17
-rw-r--r--win8/metro_driver/resources/chrome.VisualElementsManifest.xml9
-rw-r--r--win8/metro_driver/resources/splash-620x300.pngbin10185 -> 0 bytes
6 files changed, 10 insertions, 19 deletions
diff --git a/win8/metro_driver/metro_driver.gyp b/win8/metro_driver/metro_driver.gyp
index b1c17fd..c58ae33 100644
--- a/win8/metro_driver/metro_driver.gyp
+++ b/win8/metro_driver/metro_driver.gyp
@@ -119,8 +119,7 @@
'resources/Logo.png',
'resources/SecondaryTile.png',
'resources/SmallLogo.png',
- 'resources/splash-620x300.png',
- 'resources/VisualElementsManifest.xml',
+ 'resources/chrome.VisualElementsManifest.xml',
],
},
],
diff --git a/win8/metro_driver/resources/Logo.png b/win8/metro_driver/resources/Logo.png
index 16d18e3..eff95d9 100644
--- a/win8/metro_driver/resources/Logo.png
+++ b/win8/metro_driver/resources/Logo.png
Binary files differ
diff --git a/win8/metro_driver/resources/SmallLogo.png b/win8/metro_driver/resources/SmallLogo.png
index c25cfb4..eff95d9 100644
--- a/win8/metro_driver/resources/SmallLogo.png
+++ b/win8/metro_driver/resources/SmallLogo.png
Binary files differ
diff --git a/win8/metro_driver/resources/VisualElementsManifest.xml b/win8/metro_driver/resources/VisualElementsManifest.xml
deleted file mode 100644
index b9c765f..0000000
--- a/win8/metro_driver/resources/VisualElementsManifest.xml
+++ /dev/null
@@ -1,17 +0,0 @@
-<!-- This is only meant to be copied by chrome.exe in developer builds. -->
-<Application
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
- <VisualElements
- DisplayName="Developer Chrome"
- Logo="Logo.png"
- SmallLogo="SmallLogo.png"
- ForegroundText="light"
- BackgroundColor="white">
- <DefaultTile
- ShortName="DevChrome"
- ShowName="allLogos"
- />
- <SplashScreen
- Image="splash-620x300.png"/>
- </VisualElements>
-</Application>
diff --git a/win8/metro_driver/resources/chrome.VisualElementsManifest.xml b/win8/metro_driver/resources/chrome.VisualElementsManifest.xml
new file mode 100644
index 0000000..640ef97
--- /dev/null
+++ b/win8/metro_driver/resources/chrome.VisualElementsManifest.xml
@@ -0,0 +1,9 @@
+<!-- This is only meant to be copied by chrome.exe in developer builds. -->
+<Application xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+ <VisualElements
+ BackgroundColor="#323232"
+ ShowNameOnSquare150x150Logo="on"
+ ForegroundText="light"
+ Square150x150Logo="Logo.png"
+ Square70x70Logo="SmallLogo.png"/>
+</Application>
diff --git a/win8/metro_driver/resources/splash-620x300.png b/win8/metro_driver/resources/splash-620x300.png
deleted file mode 100644
index 41a3e02..0000000
--- a/win8/metro_driver/resources/splash-620x300.png
+++ /dev/null
Binary files differ