diff options
author | finnur@google.com <finnur@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-11-06 04:41:29 +0000 |
---|---|---|
committer | finnur@google.com <finnur@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-11-06 04:41:29 +0000 |
commit | 3a86218b4e49293ad7b4a2a9d1cfe99675888f60 (patch) | |
tree | 0b93dcd2c5f2d69f719b3852f7923aa94b8452bf /chrome/browser/views/about_chrome_view.h | |
parent | 488e909e924ff53ad480a8516cccdc7ab64f43fe (diff) | |
download | chromium_src-3a86218b4e49293ad7b4a2a9d1cfe99675888f60.zip chromium_src-3a86218b4e49293ad7b4a2a9d1cfe99675888f60.tar.gz chromium_src-3a86218b4e49293ad7b4a2a9d1cfe99675888f60.tar.bz2 |
Fix Large Font issues in About box (issue 2458).
Review URL: http://codereview.chromium.org/9432
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@4870 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/views/about_chrome_view.h')
-rw-r--r-- | chrome/browser/views/about_chrome_view.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/chrome/browser/views/about_chrome_view.h b/chrome/browser/views/about_chrome_view.h index be876a4..47292e3 100644 --- a/chrome/browser/views/about_chrome_view.h +++ b/chrome/browser/views/about_chrome_view.h @@ -122,7 +122,7 @@ class AboutChromeView : public views::View, Profile* profile_; // UI elements on the dialog. - views::ImageView* about_dlg_background_; + views::ImageView* about_dlg_background_logo_; views::Label* about_title_label_; views::TextField* version_label_; views::Label* copyright_label_; @@ -141,6 +141,9 @@ class AboutChromeView : public views::View, views::ImageView timeout_indicator_; views::Label update_label_; + // The dialog dimensions. + gfx::Size dialog_dimensions_; + // Keeps track of the visible state of the Check For Updates button. CheckButtonStatus check_button_status_; |