| Index: chrome/browser/ui/web_applications/web_app_ui.cc
|
| diff --git a/chrome/browser/ui/web_applications/web_app_ui.cc b/chrome/browser/ui/web_applications/web_app_ui.cc
|
| index 783b49b4ab6085ee25b5d7383098e5f74a4adc49..5684b508a6f5a98569b34e6e727c58b7d3f31c72 100644
|
| --- a/chrome/browser/ui/web_applications/web_app_ui.cc
|
| +++ b/chrome/browser/ui/web_applications/web_app_ui.cc
|
| @@ -46,6 +46,10 @@ namespace {
|
|
|
| #if defined(OS_MACOSX)
|
| const int kDesiredSizes[] = {16, 32, 128, 256, 512};
|
| +#elif defined(OS_LINUX)
|
| +// Linux supports icons of any size. FreeDesktop Icon Theme Specification states
|
| +// that "Minimally you should install a 48x48 icon in the hicolor theme."
|
| +const int kDesiredSizes[] = {16, 32, 48, 128, 256, 512};
|
| #else
|
| const int kDesiredSizes[] = {32};
|
| #endif
|
|
|