OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 "chrome/browser/history/select_favicon_frames.h" | 5 #include "components/favicon_base/select_favicon_frames.h" |
6 | 6 |
7 #include "ui/base/layout.h" | |
8 #include "ui/gfx/image/image_skia.h" | |
9 #include "testing/gtest/include/gtest/gtest.h" | 7 #include "testing/gtest/include/gtest/gtest.h" |
10 #include "third_party/skia/include/core/SkBitmap.h" | 8 #include "third_party/skia/include/core/SkBitmap.h" |
11 #include "third_party/skia/include/core/SkColor.h" | 9 #include "third_party/skia/include/core/SkColor.h" |
| 10 #include "ui/base/layout.h" |
| 11 #include "ui/gfx/image/image_skia.h" |
12 | 12 |
13 using std::vector; | 13 using std::vector; |
14 | 14 |
15 namespace { | 15 namespace { |
16 | 16 |
17 vector<ui::ScaleFactor> Scale1x() { | 17 vector<ui::ScaleFactor> Scale1x() { |
18 return vector<ui::ScaleFactor>(1, ui::SCALE_FACTOR_100P); | 18 return vector<ui::ScaleFactor>(1, ui::SCALE_FACTOR_100P); |
19 } | 19 } |
20 | 20 |
21 vector<ui::ScaleFactor> Scale1x2x() { | 21 vector<ui::ScaleFactor> Scale1x2x() { |
(...skipping 243 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
265 bitmaps2.push_back(MakeBitmap(SK_ColorGREEN, 15, 15)); | 265 bitmaps2.push_back(MakeBitmap(SK_ColorGREEN, 15, 15)); |
266 vector<gfx::Size> sizes2; | 266 vector<gfx::Size> sizes2; |
267 sizes2.push_back(gfx::Size(15, 15)); | 267 sizes2.push_back(gfx::Size(15, 15)); |
268 float score2; | 268 float score2; |
269 SelectFaviconFrames(bitmaps2, sizes2, Scale1x(), 16, &score2); | 269 SelectFaviconFrames(bitmaps2, sizes2, Scale1x(), 16, &score2); |
270 | 270 |
271 EXPECT_GT(score2, score1); | 271 EXPECT_GT(score2, score1); |
272 } | 272 } |
273 | 273 |
274 } // namespace | 274 } // namespace |
OLD | NEW |