| 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_X11) | 9 #if defined(USE_X11) |
| 10 #if defined(TOOLKIT_VIEWS) | 10 #if defined(TOOLKIT_VIEWS) |
| 11 const bool kCanToggleSystemTitleBar = false; | 11 const bool kCanToggleSystemTitleBar = false; |
| 12 #else | 12 #else |
| 13 const bool kCanToggleSystemTitleBar = true; | 13 const bool kCanToggleSystemTitleBar = true; |
| 14 #endif | 14 #endif |
| 15 #endif | 15 #endif |
| 16 | 16 |
| 17 const int kOmniboxFontPixelSize = 16; | 17 const int kOmniboxFontPixelSize = 16; |
| 18 | 18 |
| 19 #if defined(TOOLKIT_VIEWS) | 19 #if defined(TOOLKIT_VIEWS) |
| 20 #if defined(OS_WIN) | 20 #if defined(OS_WIN) |
| 21 const bool kShowLinkDisambiguationPopup = true; | 21 const bool kShowLinkDisambiguationPopupDONTUSEME = true; |
| 22 #else | 22 #else |
| 23 const bool kShowLinkDisambiguationPopup = false; | 23 const bool kShowLinkDisambiguationPopupDONTUSEME = false; |
| 24 #endif | 24 #endif |
| 25 #endif | 25 #endif |
| 26 | 26 |
| 27 #if defined(OS_CHROMEOS) || defined(OS_MACOSX) | 27 #if defined(OS_CHROMEOS) || defined(OS_MACOSX) |
| 28 const bool kBrowserAliveWithNoWindows = true; | 28 const bool kBrowserAliveWithNoWindows = true; |
| 29 const bool kShowExitMenuItem = false; | 29 const bool kShowExitMenuItem = false; |
| 30 #else | 30 #else |
| 31 const bool kBrowserAliveWithNoWindows = false; | 31 const bool kBrowserAliveWithNoWindows = false; |
| 32 const bool kShowExitMenuItem = true; | 32 const bool kShowExitMenuItem = true; |
| 33 #endif | 33 #endif |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 68 | 68 |
| 69 #if !defined(OS_ANDROID) | 69 #if !defined(OS_ANDROID) |
| 70 const bool kPasswordEchoEnabled = false; | 70 const bool kPasswordEchoEnabled = false; |
| 71 #endif | 71 #endif |
| 72 | 72 |
| 73 bool bookmarks_enabled = true; | 73 bool bookmarks_enabled = true; |
| 74 | 74 |
| 75 bool enable_help_app = true; | 75 bool enable_help_app = true; |
| 76 | 76 |
| 77 } // namespace browser_defaults | 77 } // namespace browser_defaults |
| OLD | NEW |