| OLD | NEW |
| 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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 29 matching lines...) Expand all Loading... |
| 40 | 40 |
| 41 #if !defined(OS_CHROMEOS) | 41 #if !defined(OS_CHROMEOS) |
| 42 | 42 |
| 43 const SessionStartupPref::Type kDefaultSessionStartupType = | 43 const SessionStartupPref::Type kDefaultSessionStartupType = |
| 44 SessionStartupPref::DEFAULT; | 44 SessionStartupPref::DEFAULT; |
| 45 const int kPinnedTabWidth = 56; | 45 const int kPinnedTabWidth = 56; |
| 46 const bool kRestorePopups = false; | 46 const bool kRestorePopups = false; |
| 47 | 47 |
| 48 #endif | 48 #endif |
| 49 | 49 |
| 50 #if defined(OS_MACOSX) |
| 51 const bool kBrowserAliveWithNoWindows = true; |
| 52 #else |
| 53 const bool kBrowserAliveWithNoWindows = false; |
| 54 #endif |
| 55 |
| 50 } // namespace browser_defaults | 56 } // namespace browser_defaults |
| OLD | NEW |