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_X11) | 9 #if defined(USE_X11) |
10 #if defined(TOOLKIT_VIEWS) | 10 #if defined(TOOLKIT_VIEWS) |
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
59 | 59 |
60 #if defined(OS_LINUX) && !defined(OS_CHROMEOS) | 60 #if defined(OS_LINUX) && !defined(OS_CHROMEOS) |
61 const bool kScrollEventChangesTab = true; | 61 const bool kScrollEventChangesTab = true; |
62 #else | 62 #else |
63 const bool kScrollEventChangesTab = false; | 63 const bool kScrollEventChangesTab = false; |
64 #endif | 64 #endif |
65 | 65 |
66 const ui::ResourceBundle::FontStyle kAssociatedNetworkFontStyle = | 66 const ui::ResourceBundle::FontStyle kAssociatedNetworkFontStyle = |
67 ui::ResourceBundle::BoldFont; | 67 ui::ResourceBundle::BoldFont; |
68 | 68 |
69 const int kInfoBarBorderPaddingVertical = 5; | |
70 | |
71 #if !defined(OS_ANDROID) | 69 #if !defined(OS_ANDROID) |
72 const bool kPasswordEchoEnabled = false; | 70 const bool kPasswordEchoEnabled = false; |
73 #endif | 71 #endif |
74 | 72 |
75 bool bookmarks_enabled = true; | 73 bool bookmarks_enabled = true; |
76 | 74 |
77 bool enable_help_app = true; | 75 bool enable_help_app = true; |
78 | 76 |
79 } // namespace browser_defaults | 77 } // namespace browser_defaults |
OLD | NEW |