| Index: chrome/browser/ui/tests/ui_gfx_image_unittest.cc
|
| diff --git a/chrome/browser/ui/tests/ui_gfx_image_unittest.cc b/chrome/browser/ui/tests/ui_gfx_image_unittest.cc
|
| index cfe1c9be764b83d611575d4df357341052b539f8..7c8f100473cb50b1f2a17e349eb2fbcfe270d13d 100644
|
| --- a/chrome/browser/ui/tests/ui_gfx_image_unittest.cc
|
| +++ b/chrome/browser/ui/tests/ui_gfx_image_unittest.cc
|
| @@ -6,7 +6,7 @@
|
| #include "testing/gtest/include/gtest/gtest.h"
|
| #include "third_party/skia/include/core/SkBitmap.h"
|
| #include "ui/gfx/image.h"
|
| -#include "ui/gfx/image_unittest.h"
|
| +#include "ui/gfx/image_unittest_util.h"
|
|
|
| #if defined(OS_LINUX)
|
| #include <gtk/gtk.h>
|
| @@ -43,7 +43,7 @@ TEST(UiGfxImageTest, GtkImageView) {
|
| GtkWidget* fixed = gtk_fixed_new();
|
| gtk_container_add(GTK_CONTAINER(window), fixed);
|
|
|
| - gfx::Image image(gfx::test::CreateBitmap());
|
| + gfx::Image image(gfx::test::CreateBitmap(25, 25));
|
| GtkWidget* image_view = gtk_image_new_from_pixbuf(image);
|
| gtk_fixed_put(GTK_FIXED(fixed), image_view, 10, 10);
|
| gtk_widget_set_size_request(image_view, 25, 25);
|
|
|