| 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 "build/build_config.h" | 5 #include "build/build_config.h" |
| 6 #include "chrome/browser/defaults.h" | 6 #include "chrome/browser/defaults.h" |
| 7 | 7 |
| 8 namespace browser_defaults { | 8 namespace browser_defaults { |
| 9 | 9 |
| 10 #if defined(OS_CHROMEOS) || defined(OS_MACOSX) | 10 #if defined(OS_CHROMEOS) || defined(OS_MACOSX) |
| (...skipping 22 matching lines...) Expand all Loading... |
| 33 #else | 33 #else |
| 34 const bool kShowHelpMenuItemIcon = false; | 34 const bool kShowHelpMenuItemIcon = false; |
| 35 #endif | 35 #endif |
| 36 #endif | 36 #endif |
| 37 | 37 |
| 38 const bool kDownloadPageHasShowInFolder = true; | 38 const bool kDownloadPageHasShowInFolder = true; |
| 39 const bool kSizeTabButtonToTopOfTabStrip = false; | 39 const bool kSizeTabButtonToTopOfTabStrip = false; |
| 40 | 40 |
| 41 #if defined(OS_CHROMEOS) || defined(OS_ANDROID) | 41 #if defined(OS_CHROMEOS) || defined(OS_ANDROID) |
| 42 const bool kSyncAutoStarts = true; | 42 const bool kSyncAutoStarts = true; |
| 43 const bool kShowOtherBrowsersInAboutMemory = false; | |
| 44 #else | 43 #else |
| 45 const bool kSyncAutoStarts = false; | 44 const bool kSyncAutoStarts = false; |
| 46 const bool kShowOtherBrowsersInAboutMemory = true; | |
| 47 #endif | 45 #endif |
| 48 | 46 |
| 49 #if defined(OS_LINUX) && !defined(OS_CHROMEOS) | 47 #if defined(OS_LINUX) && !defined(OS_CHROMEOS) |
| 50 const bool kScrollEventChangesTab = true; | 48 const bool kScrollEventChangesTab = true; |
| 51 #else | 49 #else |
| 52 const bool kScrollEventChangesTab = false; | 50 const bool kScrollEventChangesTab = false; |
| 53 #endif | 51 #endif |
| 54 | 52 |
| 55 #if !defined(OS_ANDROID) | 53 #if !defined(OS_ANDROID) |
| 56 const bool kPasswordEchoEnabled = false; | 54 const bool kPasswordEchoEnabled = false; |
| 57 #endif | 55 #endif |
| 58 | 56 |
| 59 bool bookmarks_enabled = true; | 57 bool bookmarks_enabled = true; |
| 60 | 58 |
| 61 bool enable_help_app = true; | 59 bool enable_help_app = true; |
| 62 | 60 |
| 63 } // namespace browser_defaults | 61 } // namespace browser_defaults |
| OLD | NEW |