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

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

Issue 3203008: Move prefs-related files under chrome/browser/ into a prefs/ subdir. (Closed) Base URL: http://src.chromium.org/git/chromium.git
Patch Set: Created 10 years, 3 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
OLDNEW
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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 #pragma once 9 #pragma once
10 10
11 #include "build/build_config.h" 11 #include "build/build_config.h"
12 #include "chrome/browser/session_startup_pref.h" 12 #include "chrome/browser/prefs/session_startup_pref.h"
13 13
14 namespace browser_defaults { 14 namespace browser_defaults {
15 15
16 #if defined(USE_X11) 16 #if defined(USE_X11)
17 17
18 // Size of the font in pixels used in the autocomplete box for normal windows. 18 // Size of the font in pixels used in the autocomplete box for normal windows.
19 extern const double kAutocompleteEditFontPixelSize; 19 extern const double kAutocompleteEditFontPixelSize;
20 20
21 // Size of the font in pixels used in the autocomplete box for popup windows. 21 // Size of the font in pixels used in the autocomplete box for popup windows.
22 extern const double kAutocompleteEditFontPixelSizeInPopup; 22 extern const double kAutocompleteEditFontPixelSizeInPopup;
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
77 //============================================================================= 77 //=============================================================================
78 // Runtime "const" - set only once after parsing command line option and should 78 // Runtime "const" - set only once after parsing command line option and should
79 // never be modified after that. 79 // never be modified after that.
80 80
81 // Are bookmark enabled? True by default. 81 // Are bookmark enabled? True by default.
82 extern bool bookmarks_enabled; 82 extern bool bookmarks_enabled;
83 83
84 } // namespace browser_defaults 84 } // namespace browser_defaults
85 85
86 #endif // CHROME_BROWSER_DEFAULTS_H_ 86 #endif // CHROME_BROWSER_DEFAULTS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698