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_AURA) | 9 #if defined(USE_AURA) |
10 const bool kOSSupportsOtherBrowsers = false; | 10 const bool kOSSupportsOtherBrowsers = false; |
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
84 ui::ResourceBundle::BoldFont; | 84 ui::ResourceBundle::BoldFont; |
85 | 85 |
86 const int kInfoBarBorderPaddingVertical = 5; | 86 const int kInfoBarBorderPaddingVertical = 5; |
87 | 87 |
88 #if defined(OS_ANDROID) | 88 #if defined(OS_ANDROID) |
89 const bool kPasswordEchoEnabled = true; | 89 const bool kPasswordEchoEnabled = true; |
90 #else | 90 #else |
91 const bool kPasswordEchoEnabled = false; | 91 const bool kPasswordEchoEnabled = false; |
92 #endif | 92 #endif |
93 | 93 |
| 94 #if defined(OS_CHROMEOS) |
| 95 const bool kAppRestoreSession = true; |
| 96 #else |
| 97 const bool kAppRestoreSession = false; |
| 98 #endif |
| 99 |
94 bool bookmarks_enabled = true; | 100 bool bookmarks_enabled = true; |
95 | 101 |
96 bool enable_help_app = true; | 102 bool enable_help_app = true; |
97 | 103 |
98 } // namespace browser_defaults | 104 } // namespace browser_defaults |
OLD | NEW |