| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "ui/gfx/favicon_size.h" | 5 #include "ui/gfx/favicon_size.h" |
| 6 | 6 |
| 7 namespace gfx { | 7 namespace gfx { |
| 8 | 8 |
| 9 const int kFaviconSize = 16; | 9 const int kFaviconSize = 16; |
| 10 | 10 |
| 11 const int kSizeInDip = kFaviconSize; |
| 12 |
| 13 const int kSizeInDip2x = kFaviconSize * 2; |
| 14 |
| 15 const int kSizeInDip4x = kFaviconSize * 4; |
| 16 |
| 11 void CalculateFaviconTargetSize(int* width, int* height) { | 17 void CalculateFaviconTargetSize(int* width, int* height) { |
| 12 if (*width > kFaviconSize || *height > kFaviconSize) { | 18 if (*width > kFaviconSize || *height > kFaviconSize) { |
| 13 // Too big, resize it maintaining the aspect ratio. | 19 // Too big, resize it maintaining the aspect ratio. |
| 14 float aspect_ratio = static_cast<float>(*width) / | 20 float aspect_ratio = static_cast<float>(*width) / |
| 15 static_cast<float>(*height); | 21 static_cast<float>(*height); |
| 16 *height = kFaviconSize; | 22 *height = kFaviconSize; |
| 17 *width = static_cast<int>(aspect_ratio * *height); | 23 *width = static_cast<int>(aspect_ratio * *height); |
| 18 if (*width > kFaviconSize) { | 24 if (*width > kFaviconSize) { |
| 19 *width = kFaviconSize; | 25 *width = kFaviconSize; |
| 20 *height = static_cast<int>(*width / aspect_ratio); | 26 *height = static_cast<int>(*width / aspect_ratio); |
| 21 } | 27 } |
| 22 } | 28 } |
| 23 } | 29 } |
| 24 | 30 |
| 25 } // namespace gfx | 31 } // namespace gfx |
| OLD | NEW |