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

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

Issue 9296038: [uber] Redoing the homepage selection UI (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: reverting a couple unintentional changes Created 8 years, 10 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 | 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_AURA) || defined(OS_CHROMEOS) 9 #if defined(USE_AURA) || defined(OS_CHROMEOS)
10 const bool kOSSupportsOtherBrowsers = false; 10 const bool kOSSupportsOtherBrowsers = false;
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
51 const bool kCanToggleSystemTitleBar = true; 51 const bool kCanToggleSystemTitleBar = true;
52 #endif 52 #endif
53 53
54 #else 54 #else
55 const bool kShowCancelButtonInTaskManager = false; 55 const bool kShowCancelButtonInTaskManager = false;
56 #endif 56 #endif
57 57
58 #if !defined(OS_CHROMEOS) 58 #if !defined(OS_CHROMEOS)
59 59
60 const SessionStartupPref::Type kDefaultSessionStartupType = 60 const SessionStartupPref::Type kDefaultSessionStartupType =
61 SessionStartupPref::DEFAULT; 61 SessionStartupPref::NEWTAB;
62 const int kMiniTabWidth = 56; 62 const int kMiniTabWidth = 56;
63 const bool kRestorePopups = false; 63 const bool kRestorePopups = false;
64 const bool kShowImportOnBookmarkBar = true; 64 const bool kShowImportOnBookmarkBar = true;
65 const bool kDownloadPageHasShowInFolder = true; 65 const bool kDownloadPageHasShowInFolder = true;
66 #if defined(OS_MACOSX) 66 #if defined(OS_MACOSX)
67 const bool kShowExitMenuItem = false; 67 const bool kShowExitMenuItem = false;
68 #else 68 #else
69 const bool kShowExitMenuItem = true; 69 const bool kShowExitMenuItem = true;
70 #endif 70 #endif
71 const bool kSizeTabButtonToTopOfTabStrip = false; 71 const bool kSizeTabButtonToTopOfTabStrip = false;
(...skipping 14 matching lines...) Expand all
86 const ui::ResourceBundle::FontStyle kAssociatedNetworkFontStyle = 86 const ui::ResourceBundle::FontStyle kAssociatedNetworkFontStyle =
87 ui::ResourceBundle::BoldFont; 87 ui::ResourceBundle::BoldFont;
88 88
89 const int kInfoBarBorderPaddingVertical = 5; 89 const int kInfoBarBorderPaddingVertical = 5;
90 90
91 bool bookmarks_enabled = true; 91 bool bookmarks_enabled = true;
92 92
93 bool enable_help_app = true; 93 bool enable_help_app = true;
94 94
95 } // namespace browser_defaults 95 } // namespace browser_defaults
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698