diff options
author | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-08-11 19:45:19 +0000 |
---|---|---|
committer | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-08-11 19:45:19 +0000 |
commit | 34cc1917d8003c107c1c320e5b50fe240de8a010 (patch) | |
tree | 4731a3d0036c85308171ec612a4bcd6cd15e1e60 /chrome/browser/defaults.h | |
parent | 960141c714a764b26ab954773018e68eafc3b97d (diff) | |
download | chromium_src-34cc1917d8003c107c1c320e5b50fe240de8a010.zip chromium_src-34cc1917d8003c107c1c320e5b50fe240de8a010.tar.gz chromium_src-34cc1917d8003c107c1c320e5b50fe240de8a010.tar.bz2 |
Add a first attempt at a compact location bar and a status bar. The status bar
contains a clock, an application menu, and a non-working battery indicator.
The compact location bar can be toggled by COMPACT_NAV_BAR in browser_window_gtk.cc
Review URL: http://codereview.chromium.org/165272
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@23070 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/defaults.h')
-rw-r--r-- | chrome/browser/defaults.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/chrome/browser/defaults.h b/chrome/browser/defaults.h index 9ce7250..dd1c6c6 100644 --- a/chrome/browser/defaults.h +++ b/chrome/browser/defaults.h @@ -14,8 +14,11 @@ namespace browser_defaults { #if defined(OS_LINUX) -// Whether the size of the autocomplete's font should be changed. -extern const bool kForceAutocompleteEditFontSize; +// Size of the font in pixels used in the autocomplete box for normal windows. +extern const double kAutocompleteEditFontPixelSize; + +// Size of the font in pixels used in the autocomplete box for popup windows. +extern const double kAutocompleteEditFontPixelSizeInPopup; // Size of the font used in the autocomplete popup. extern const int kAutocompletePopupFontSize; |