Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(203)

Side by Side Diff: chrome/browser/defaults.h

Issue 165272: Add a first attempt at a compact location bar and a status bar. The status ba... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/browser/autocomplete/autocomplete_edit_view_gtk.cc ('k') | chrome/browser/defaults.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2009 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 // Defines various defaults whose values varies depending upon the OS. 5 // Defines various defaults whose values varies depending upon the OS.
6 6
7 #ifndef CHROME_BROWSER_DEFAULTS_H_ 7 #ifndef CHROME_BROWSER_DEFAULTS_H_
8 #define CHROME_BROWSER_DEFAULTS_H_ 8 #define CHROME_BROWSER_DEFAULTS_H_
9 9
10 #include "build/build_config.h" 10 #include "build/build_config.h"
11 #include "chrome/browser/session_startup_pref.h" 11 #include "chrome/browser/session_startup_pref.h"
12 12
13 namespace browser_defaults { 13 namespace browser_defaults {
14 14
15 #if defined(OS_LINUX) 15 #if defined(OS_LINUX)
16 16
17 // Whether the size of the autocomplete's font should be changed. 17 // Size of the font in pixels used in the autocomplete box for normal windows.
18 extern const bool kForceAutocompleteEditFontSize; 18 extern const double kAutocompleteEditFontPixelSize;
19
20 // Size of the font in pixels used in the autocomplete box for popup windows.
21 extern const double kAutocompleteEditFontPixelSizeInPopup;
19 22
20 // Size of the font used in the autocomplete popup. 23 // Size of the font used in the autocomplete popup.
21 extern const int kAutocompletePopupFontSize; 24 extern const int kAutocompletePopupFontSize;
22 25
23 #endif 26 #endif
24 27
25 // The default value for session startup. 28 // The default value for session startup.
26 extern const SessionStartupPref::Type kDefaultSessionStartupType; 29 extern const SessionStartupPref::Type kDefaultSessionStartupType;
27 30
28 // On launching Chrome should we show the crash info bar if Chrome crashed? 31 // On launching Chrome should we show the crash info bar if Chrome crashed?
29 extern const bool kSuppressCrashInfoBar; 32 extern const bool kSuppressCrashInfoBar;
30 33
31 // Should we restore the last session if the user opted to restore the last 34 // Should we restore the last session if the user opted to restore the last
32 // session on startup and Chrome crashed? 35 // session on startup and Chrome crashed?
33 // TODO(sky): this should be removed once Chrome OS cleanly shuts down Chrome. 36 // TODO(sky): this should be removed once Chrome OS cleanly shuts down Chrome.
34 extern const bool kRestoreAfterCrash; 37 extern const bool kRestoreAfterCrash;
35 38
36 } // namespace browser_defaults 39 } // namespace browser_defaults
37 40
38 #endif // CHROME_BROWSER_DEFAULTS_H_ 41 #endif // CHROME_BROWSER_DEFAULTS_H_
OLDNEW
« no previous file with comments | « chrome/browser/autocomplete/autocomplete_edit_view_gtk.cc ('k') | chrome/browser/defaults.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698