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

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

Issue 1306173002: Set font size to 14 in location bar for material design (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: padding Created 5 years, 3 months 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
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 const int kOmniboxFontPixelSize = 16;
10
11 #if defined(OS_CHROMEOS) || defined(OS_MACOSX) 9 #if defined(OS_CHROMEOS) || defined(OS_MACOSX)
12 const bool kBrowserAliveWithNoWindows = true; 10 const bool kBrowserAliveWithNoWindows = true;
13 const bool kShowExitMenuItem = false; 11 const bool kShowExitMenuItem = false;
14 #else 12 #else
15 const bool kBrowserAliveWithNoWindows = false; 13 const bool kBrowserAliveWithNoWindows = false;
16 const bool kShowExitMenuItem = true; 14 const bool kShowExitMenuItem = true;
17 #endif 15 #endif
18 16
19 #if defined(OS_CHROMEOS) 17 #if defined(OS_CHROMEOS)
20 const bool kShowUpgradeMenuItem = false; 18 const bool kShowUpgradeMenuItem = false;
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
58 56
59 #if !defined(OS_ANDROID) 57 #if !defined(OS_ANDROID)
60 const bool kPasswordEchoEnabled = false; 58 const bool kPasswordEchoEnabled = false;
61 #endif 59 #endif
62 60
63 bool bookmarks_enabled = true; 61 bool bookmarks_enabled = true;
64 62
65 bool enable_help_app = true; 63 bool enable_help_app = true;
66 64
67 } // namespace browser_defaults 65 } // namespace browser_defaults
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698