| OLD | NEW |
| 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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 23 matching lines...) Expand all Loading... |
| 34 // Width of pinned tabs. | 34 // Width of pinned tabs. |
| 35 extern const int kPinnedTabWidth; | 35 extern const int kPinnedTabWidth; |
| 36 | 36 |
| 37 // Should session restore restore popup windows? | 37 // Should session restore restore popup windows? |
| 38 extern const bool kRestorePopups; | 38 extern const bool kRestorePopups; |
| 39 | 39 |
| 40 // Can the browser be alive without any browser windows? | 40 // Can the browser be alive without any browser windows? |
| 41 extern const bool kBrowserAliveWithNoWindows; | 41 extern const bool kBrowserAliveWithNoWindows; |
| 42 | 42 |
| 43 // Should a link be shown on the bookmark bar allowing the user to import | 43 // Should a link be shown on the bookmark bar allowing the user to import |
| 44 // bookmarks. | 44 // bookmarks? |
| 45 extern const bool kShowImportOnBookmarkBar; | 45 extern const bool kShowImportOnBookmarkBar; |
| 46 | 46 |
| 47 // Should the exit menu be shown? | 47 // Should the exit menu item be shown in the toolbar menu? |
| 48 extern const bool kShowExitMenuItem; | 48 extern const bool kShowExitMenuItem; |
| 49 | 49 |
| 50 // Should the about menu item be shown in the toolbar app menu? |
| 51 extern const bool kShowAboutMenuItem; |
| 52 |
| 50 // Does the OS support other browsers? If not, operations such as default | 53 // Does the OS support other browsers? If not, operations such as default |
| 51 // browser check are not done. | 54 // browser check are not done. |
| 52 extern const bool kOSSupportsOtherBrowsers; | 55 extern const bool kOSSupportsOtherBrowsers; |
| 53 | 56 |
| 54 } // namespace browser_defaults | 57 } // namespace browser_defaults |
| 55 | 58 |
| 56 #endif // CHROME_BROWSER_DEFAULTS_H_ | 59 #endif // CHROME_BROWSER_DEFAULTS_H_ |
| OLD | NEW |