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 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
97 ui::ResourceBundle::BoldFont; | 97 ui::ResourceBundle::BoldFont; |
98 | 98 |
99 const int kInfoBarBorderPaddingVertical = 5; | 99 const int kInfoBarBorderPaddingVertical = 5; |
100 | 100 |
101 #if defined(OS_ANDROID) | 101 #if defined(OS_ANDROID) |
102 const bool kPasswordEchoEnabled = true; | 102 const bool kPasswordEchoEnabled = true; |
103 #else | 103 #else |
104 const bool kPasswordEchoEnabled = false; | 104 const bool kPasswordEchoEnabled = false; |
105 #endif | 105 #endif |
106 | 106 |
| 107 #if defined(OS_CHROMEOS) |
| 108 const bool kAppRestoreSession = true; |
| 109 #else |
| 110 const bool kAppRestoreSession = false; |
| 111 #endif |
| 112 |
107 bool bookmarks_enabled = true; | 113 bool bookmarks_enabled = true; |
108 | 114 |
109 bool enable_help_app = true; | 115 bool enable_help_app = true; |
110 | 116 |
111 } // namespace browser_defaults | 117 } // namespace browser_defaults |
OLD | NEW |