| 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 "chrome/browser/defaults.h" | 6 #include "chrome/browser/defaults.h" |
| 6 | 7 |
| 7 namespace browser_defaults { | 8 namespace browser_defaults { |
| 8 | 9 |
| 9 #if defined(OS_CHROMEOS) || defined(OS_MACOSX) | 10 #if defined(OS_CHROMEOS) || defined(OS_MACOSX) |
| 10 const bool kBrowserAliveWithNoWindows = true; | 11 const bool kBrowserAliveWithNoWindows = true; |
| 11 const bool kShowExitMenuItem = false; | 12 const bool kShowExitMenuItem = false; |
| 12 #else | 13 #else |
| 13 const bool kBrowserAliveWithNoWindows = false; | 14 const bool kBrowserAliveWithNoWindows = false; |
| 14 const bool kShowExitMenuItem = true; | 15 const bool kShowExitMenuItem = true; |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 53 | 54 |
| 54 #if !defined(OS_ANDROID) | 55 #if !defined(OS_ANDROID) |
| 55 const bool kPasswordEchoEnabled = false; | 56 const bool kPasswordEchoEnabled = false; |
| 56 #endif | 57 #endif |
| 57 | 58 |
| 58 bool bookmarks_enabled = true; | 59 bool bookmarks_enabled = true; |
| 59 | 60 |
| 60 bool enable_help_app = true; | 61 bool enable_help_app = true; |
| 61 | 62 |
| 62 } // namespace browser_defaults | 63 } // namespace browser_defaults |
| OLD | NEW |