Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(798)

Side by Side Diff: chrome/browser/defaults.cc

Issue 81833007: Remove unnecessary Border subclasses where we can achieve the same functionality (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 7 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698