OLD | NEW |
---|---|
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 |
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
75 // Are bookmark enabled? True by default. | 75 // Are bookmark enabled? True by default. |
76 extern bool bookmarks_enabled; | 76 extern bool bookmarks_enabled; |
77 | 77 |
78 // Should we skip the user's preference for restore. False by default. | 78 // Should we skip the user's preference for restore. False by default. |
79 extern bool skip_restore; | 79 extern bool skip_restore; |
80 | 80 |
81 // Whether HelpApp is enabled. True by default. This is only used by Chrome OS | 81 // Whether HelpApp is enabled. True by default. This is only used by Chrome OS |
82 // today. | 82 // today. |
83 extern bool enable_help_app; | 83 extern bool enable_help_app; |
84 | 84 |
85 // Are touch icons enabled? False by default. | |
86 extern bool enable_touch_icon; | |
sky
2011/03/22 19:48:48
This should be above line 72, right?
michaelbai
2011/03/22 23:59:03
Done.
| |
87 | |
85 } // namespace browser_defaults | 88 } // namespace browser_defaults |
86 | 89 |
87 #endif // CHROME_BROWSER_DEFAULTS_H_ | 90 #endif // CHROME_BROWSER_DEFAULTS_H_ |
OLD | NEW |