OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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" |
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
87 // where we want the desktop to show through in this situation. | 87 // where we want the desktop to show through in this situation. |
88 extern const bool kAlwaysCreateTabbedBrowserOnSessionRestore; | 88 extern const bool kAlwaysCreateTabbedBrowserOnSessionRestore; |
89 | 89 |
90 //============================================================================= | 90 //============================================================================= |
91 // Runtime "const" - set only once after parsing command line option and should | 91 // Runtime "const" - set only once after parsing command line option and should |
92 // never be modified after that. | 92 // never be modified after that. |
93 | 93 |
94 // Are bookmark enabled? True by default. | 94 // Are bookmark enabled? True by default. |
95 extern bool bookmarks_enabled; | 95 extern bool bookmarks_enabled; |
96 | 96 |
97 // Whether Quick Office component extension is enabled. | |
98 // True by default. This is only used by Chrome OS today. | |
99 extern bool enable_component_quick_office; | |
100 | |
101 // Whether HelpApp is enabled. True by default. This is only used by Chrome OS | 97 // Whether HelpApp is enabled. True by default. This is only used by Chrome OS |
102 // today. | 98 // today. |
103 extern bool enable_help_app; | 99 extern bool enable_help_app; |
104 | 100 |
105 } // namespace browser_defaults | 101 } // namespace browser_defaults |
106 | 102 |
107 #endif // CHROME_BROWSER_DEFAULTS_H_ | 103 #endif // CHROME_BROWSER_DEFAULTS_H_ |
OLD | NEW |