Index: chrome/browser/ui/views/first_run_bubble.cc |
=================================================================== |
--- chrome/browser/ui/views/first_run_bubble.cc (revision 71828) |
+++ chrome/browser/ui/views/first_run_bubble.cc (working copy) |
@@ -7,7 +7,6 @@ |
#include "app/gfx/font_util.h" |
#include "app/l10n_util.h" |
#include "app/resource_bundle.h" |
-#include "app/win/hwnd_util.h" |
#include "base/utf_string_conversions.h" |
#include "chrome/browser/browser_list.h" |
#include "chrome/browser/browser_window.h" |
@@ -19,6 +18,7 @@ |
#include "grit/generated_resources.h" |
#include "grit/locale_settings.h" |
#include "grit/theme_resources.h" |
+#include "ui/base/win/hwnd_util.h" |
#include "views/event.h" |
#include "views/controls/button/native_button.h" |
#include "views/controls/button/image_button.h" |
@@ -358,7 +358,7 @@ |
// now, we force Vista to show a correctly-sized box by taking account of |
// the difference in font size calculation. The coefficient should not be |
// stored in a variable because it's a hack and should go away. |
- if (app::win::ShouldUseVistaFrame()) { |
+ if (ui::ShouldUseVistaFrame()) { |
size.set_width(static_cast<int>(size.width() * 0.85)); |
size.set_height(static_cast<int>(size.height() * 0.85)); |
} |