| 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 kShowSyncSetupMenuItem; | 46 extern const bool kShowSigninMenuItem; |
| 47 extern const bool kShowUpgradeMenuItem; | 47 extern const bool kShowUpgradeMenuItem; |
| 48 | 48 |
| 49 // Does the OS support other browsers? If not, operations such as default | 49 // Does the OS support other browsers? If not, operations such as default |
| 50 // browser check are not done. | 50 // browser check are not done. |
| 51 extern const bool kOSSupportsOtherBrowsers; | 51 extern const bool kOSSupportsOtherBrowsers; |
| 52 | 52 |
| 53 // Does the download page have the show in folder option? | 53 // Does the download page have the show in folder option? |
| 54 extern const bool kDownloadPageHasShowInFolder; | 54 extern const bool kDownloadPageHasShowInFolder; |
| 55 | 55 |
| 56 // Should the tab strip be sized to the top of the tab strip? | 56 // 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. | 95 // Are bookmark enabled? True by default. |
| 96 extern bool bookmarks_enabled; | 96 extern bool bookmarks_enabled; |
| 97 | 97 |
| 98 // Whether HelpApp is enabled. True by default. This is only used by Chrome OS | 98 // Whether HelpApp is enabled. True by default. This is only used by Chrome OS |
| 99 // today. | 99 // today. |
| 100 extern bool enable_help_app; | 100 extern bool enable_help_app; |
| 101 | 101 |
| 102 } // namespace browser_defaults | 102 } // namespace browser_defaults |
| 103 | 103 |
| 104 #endif // CHROME_BROWSER_DEFAULTS_H_ | 104 #endif // CHROME_BROWSER_DEFAULTS_H_ |
| OLD | NEW |