| 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 const int kOmniboxFontPixelSize = 16; | |
| 10 | |
| 11 #if defined(OS_CHROMEOS) || defined(OS_MACOSX) | 9 #if defined(OS_CHROMEOS) || defined(OS_MACOSX) |
| 12 const bool kBrowserAliveWithNoWindows = true; | 10 const bool kBrowserAliveWithNoWindows = true; |
| 13 const bool kShowExitMenuItem = false; | 11 const bool kShowExitMenuItem = false; |
| 14 #else | 12 #else |
| 15 const bool kBrowserAliveWithNoWindows = false; | 13 const bool kBrowserAliveWithNoWindows = false; |
| 16 const bool kShowExitMenuItem = true; | 14 const bool kShowExitMenuItem = true; |
| 17 #endif | 15 #endif |
| 18 | 16 |
| 19 #if defined(OS_CHROMEOS) | 17 #if defined(OS_CHROMEOS) |
| 20 const bool kShowUpgradeMenuItem = false; | 18 const bool kShowUpgradeMenuItem = false; |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 58 | 56 |
| 59 #if !defined(OS_ANDROID) | 57 #if !defined(OS_ANDROID) |
| 60 const bool kPasswordEchoEnabled = false; | 58 const bool kPasswordEchoEnabled = false; |
| 61 #endif | 59 #endif |
| 62 | 60 |
| 63 bool bookmarks_enabled = true; | 61 bool bookmarks_enabled = true; |
| 64 | 62 |
| 65 bool enable_help_app = true; | 63 bool enable_help_app = true; |
| 66 | 64 |
| 67 } // namespace browser_defaults | 65 } // namespace browser_defaults |
| OLD | NEW |