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

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

Issue 1119005: [Mac] Re-enable pinned tabs; add support for mini-tabs and phantom tabs. (Closed)
Patch Set: Nits Created 10 years, 9 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
« no previous file with comments | « chrome/browser/defaults.h ('k') | chrome/browser/sessions/session_service.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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(OS_CHROMEOS) 9 #if defined(OS_CHROMEOS)
10 10
11 const double kAutocompleteEditFontPixelSize = 12.0; 11 const double kAutocompleteEditFontPixelSize = 12.0;
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
63 #endif 63 #endif
64 const bool kOSSupportsOtherBrowsers = true; 64 const bool kOSSupportsOtherBrowsers = true;
65 const bool kSizeTabButtonToTopOfTabStrip = false; 65 const bool kSizeTabButtonToTopOfTabStrip = false;
66 const bool kBootstrapSyncAuthentication = false; 66 const bool kBootstrapSyncAuthentication = false;
67 const bool kShowOtherBrowsersInAboutMemory = true; 67 const bool kShowOtherBrowsersInAboutMemory = true;
68 68
69 #endif 69 #endif
70 70
71 #if defined(OS_MACOSX) 71 #if defined(OS_MACOSX)
72 const bool kBrowserAliveWithNoWindows = true; 72 const bool kBrowserAliveWithNoWindows = true;
73 // When this gets enabled on Mac, remove this default.
74 const bool kEnablePinnedTabs = false;
75 #else 73 #else
76 const bool kBrowserAliveWithNoWindows = false; 74 const bool kBrowserAliveWithNoWindows = false;
77 const bool kEnablePinnedTabs = true;
78 #endif 75 #endif
79 76
80 } // namespace browser_defaults 77 } // namespace browser_defaults
OLDNEW
« no previous file with comments | « chrome/browser/defaults.h ('k') | chrome/browser/sessions/session_service.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698