OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 |
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
85 // This is temporary, and should be removed asap. | 85 // This is temporary, and should be removed asap. |
86 extern const int kMaxTabCount; | 86 extern const int kMaxTabCount; |
87 | 87 |
88 //============================================================================= | 88 //============================================================================= |
89 // Runtime "const" - set only once after parsing command line option and should | 89 // Runtime "const" - set only once after parsing command line option and should |
90 // never be modified after that. | 90 // never be modified after that. |
91 | 91 |
92 // Are bookmark enabled? True by default. | 92 // Are bookmark enabled? True by default. |
93 extern bool bookmarks_enabled; | 93 extern bool bookmarks_enabled; |
94 | 94 |
95 // Should we skip the user's preference for restore. False by default. | |
96 extern bool skip_restore; | |
97 | |
98 // Whether HelpApp is enabled. True by default. This is only used by Chrome OS | 95 // Whether HelpApp is enabled. True by default. This is only used by Chrome OS |
99 // today. | 96 // today. |
100 extern bool enable_help_app; | 97 extern bool enable_help_app; |
101 | 98 |
102 } // namespace browser_defaults | 99 } // namespace browser_defaults |
103 | 100 |
104 #endif // CHROME_BROWSER_DEFAULTS_H_ | 101 #endif // CHROME_BROWSER_DEFAULTS_H_ |
OLD | NEW |