| 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 #include "chrome/browser/defaults.h" | 5 #include "chrome/browser/defaults.h" |
| 6 | 6 |
| 7 namespace browser_defaults { | 7 namespace browser_defaults { |
| 8 | 8 |
| 9 #if defined(USE_AURA) | 9 #if defined(USE_AURA) |
| 10 const bool kOSSupportsOtherBrowsers = false; | 10 const bool kOSSupportsOtherBrowsers = false; |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 const int kAutocompleteEditFontPixelSize = 15; | 24 const int kAutocompleteEditFontPixelSize = 15; |
| 25 | 25 |
| 26 const int kAutocompleteEditFontPixelSizeInPopup = 10; | 26 const int kAutocompleteEditFontPixelSizeInPopup = 10; |
| 27 | 27 |
| 28 const bool kCanToggleSystemTitleBar = false; | 28 const bool kCanToggleSystemTitleBar = false; |
| 29 const bool kRestorePopups = false; | 29 const bool kRestorePopups = false; |
| 30 const bool kShowImportOnBookmarkBar = false; | 30 const bool kShowImportOnBookmarkBar = false; |
| 31 const bool kShowExitMenuItem = false; | 31 const bool kShowExitMenuItem = false; |
| 32 const bool kShowFeedbackMenuItem = true; | 32 const bool kShowFeedbackMenuItem = true; |
| 33 const bool kShowHelpMenuItemIcon = true; | 33 const bool kShowHelpMenuItemIcon = true; |
| 34 const bool kShowSyncSetupMenuItem = false; | 34 const bool kShowSigninMenuItem = false; |
| 35 const bool kShowUpgradeMenuItem = false; | 35 const bool kShowUpgradeMenuItem = false; |
| 36 const bool kDownloadPageHasShowInFolder = true; | 36 const bool kDownloadPageHasShowInFolder = true; |
| 37 const bool kSizeTabButtonToTopOfTabStrip = false; | 37 const bool kSizeTabButtonToTopOfTabStrip = false; |
| 38 const bool kSyncAutoStarts = true; | 38 const bool kSyncAutoStarts = true; |
| 39 const bool kShowOtherBrowsersInAboutMemory = false; | 39 const bool kShowOtherBrowsersInAboutMemory = false; |
| 40 const bool kAlwaysOpenIncognitoWindow = true; | 40 const bool kAlwaysOpenIncognitoWindow = true; |
| 41 | 41 |
| 42 #elif defined(TOOLKIT_GTK) | 42 #elif defined(TOOLKIT_GTK) |
| 43 | 43 |
| 44 // 14px = 10.5pt @ 96dpi. | 44 // 14px = 10.5pt @ 96dpi. |
| (...skipping 24 matching lines...) Expand all Loading... |
| 69 const bool kRestorePopups = false; | 69 const bool kRestorePopups = false; |
| 70 const bool kShowImportOnBookmarkBar = true; | 70 const bool kShowImportOnBookmarkBar = true; |
| 71 const bool kDownloadPageHasShowInFolder = true; | 71 const bool kDownloadPageHasShowInFolder = true; |
| 72 #if defined(OS_MACOSX) | 72 #if defined(OS_MACOSX) |
| 73 const bool kShowExitMenuItem = false; | 73 const bool kShowExitMenuItem = false; |
| 74 #else | 74 #else |
| 75 const bool kShowExitMenuItem = true; | 75 const bool kShowExitMenuItem = true; |
| 76 #endif | 76 #endif |
| 77 const bool kShowFeedbackMenuItem = false; | 77 const bool kShowFeedbackMenuItem = false; |
| 78 const bool kShowHelpMenuItemIcon = false; | 78 const bool kShowHelpMenuItemIcon = false; |
| 79 const bool kShowSyncSetupMenuItem = true; | 79 const bool kShowSigninMenuItem = true; |
| 80 const bool kShowUpgradeMenuItem = true; | 80 const bool kShowUpgradeMenuItem = true; |
| 81 const bool kSizeTabButtonToTopOfTabStrip = false; | 81 const bool kSizeTabButtonToTopOfTabStrip = false; |
| 82 #if defined(OS_ANDROID) | 82 #if defined(OS_ANDROID) |
| 83 const bool kSyncAutoStarts = true; | 83 const bool kSyncAutoStarts = true; |
| 84 const bool kShowOtherBrowsersInAboutMemory = false; | 84 const bool kShowOtherBrowsersInAboutMemory = false; |
| 85 #else | 85 #else |
| 86 const bool kSyncAutoStarts = false; | 86 const bool kSyncAutoStarts = false; |
| 87 const bool kShowOtherBrowsersInAboutMemory = true; | 87 const bool kShowOtherBrowsersInAboutMemory = true; |
| 88 #endif | 88 #endif |
| 89 const bool kAlwaysOpenIncognitoWindow = false; | 89 const bool kAlwaysOpenIncognitoWindow = false; |
| (...skipping 26 matching lines...) Expand all Loading... |
| 116 const bool kAlwaysCreateTabbedBrowserOnSessionRestore = false; | 116 const bool kAlwaysCreateTabbedBrowserOnSessionRestore = false; |
| 117 #else | 117 #else |
| 118 const bool kAlwaysCreateTabbedBrowserOnSessionRestore = true; | 118 const bool kAlwaysCreateTabbedBrowserOnSessionRestore = true; |
| 119 #endif | 119 #endif |
| 120 | 120 |
| 121 bool bookmarks_enabled = true; | 121 bool bookmarks_enabled = true; |
| 122 | 122 |
| 123 bool enable_help_app = true; | 123 bool enable_help_app = true; |
| 124 | 124 |
| 125 } // namespace browser_defaults | 125 } // namespace browser_defaults |
| OLD | NEW |