OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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(OS_CHROMEOS) | 9 #if defined(OS_CHROMEOS) |
10 | 10 |
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
70 #endif | 70 #endif |
71 | 71 |
72 #if defined(OS_MACOSX) | 72 #if defined(OS_MACOSX) |
73 const bool kBrowserAliveWithNoWindows = true; | 73 const bool kBrowserAliveWithNoWindows = true; |
74 #else | 74 #else |
75 const bool kBrowserAliveWithNoWindows = false; | 75 const bool kBrowserAliveWithNoWindows = false; |
76 #endif | 76 #endif |
77 | 77 |
78 const bool kPhantomTabsEnabled = false; | 78 const bool kPhantomTabsEnabled = false; |
79 | 79 |
| 80 bool bookmarks_enabled = true; |
| 81 |
80 } // namespace browser_defaults | 82 } // namespace browser_defaults |
OLD | NEW |