| 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 25 matching lines...) Expand all Loading... |
| 36 extern const bool kBrowserAliveWithNoWindows; | 36 extern const bool kBrowserAliveWithNoWindows; |
| 37 | 37 |
| 38 // Should a link be shown on the bookmark bar allowing the user to import | 38 // Should a link be shown on the bookmark bar allowing the user to import |
| 39 // bookmarks? | 39 // bookmarks? |
| 40 extern const bool kShowImportOnBookmarkBar; | 40 extern const bool kShowImportOnBookmarkBar; |
| 41 | 41 |
| 42 // Whether various menu items are shown. | 42 // Whether various menu items are shown. |
| 43 extern const bool kShowExitMenuItem; | 43 extern const bool kShowExitMenuItem; |
| 44 extern const bool kShowFeedbackMenuItem; | 44 extern const bool kShowFeedbackMenuItem; |
| 45 extern const bool kShowHelpMenuItemIcon; | 45 extern const bool kShowHelpMenuItemIcon; |
| 46 extern const bool kShowSigninMenuItem; | |
| 47 extern const bool kShowUpgradeMenuItem; | 46 extern const bool kShowUpgradeMenuItem; |
| 48 | 47 |
| 49 // Does the OS support other browsers? If not, operations such as default | 48 // Does the OS support other browsers? If not, operations such as default |
| 50 // browser check are not done. | 49 // browser check are not done. |
| 51 extern const bool kOSSupportsOtherBrowsers; | 50 extern const bool kOSSupportsOtherBrowsers; |
| 52 | 51 |
| 53 // Does the download page have the show in folder option? | 52 // Does the download page have the show in folder option? |
| 54 extern const bool kDownloadPageHasShowInFolder; | 53 extern const bool kDownloadPageHasShowInFolder; |
| 55 | 54 |
| 56 // Should the tab strip be sized to the top of the tab strip? | 55 // Should the tab strip be sized to the top of the tab strip? |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 95 // Are bookmark enabled? True by default. | 94 // Are bookmark enabled? True by default. |
| 96 extern bool bookmarks_enabled; | 95 extern bool bookmarks_enabled; |
| 97 | 96 |
| 98 // 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 |
| 99 // today. | 98 // today. |
| 100 extern bool enable_help_app; | 99 extern bool enable_help_app; |
| 101 | 100 |
| 102 } // namespace browser_defaults | 101 } // namespace browser_defaults |
| 103 | 102 |
| 104 #endif // CHROME_BROWSER_DEFAULTS_H_ | 103 #endif // CHROME_BROWSER_DEFAULTS_H_ |
| OLD | NEW |