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

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

Issue 1722493002: Project Eraser: Kill chrome://memory. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix chrome_browser_ui.gypi. Created 4 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/history/history_utils.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) 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 "build/build_config.h" 5 #include "build/build_config.h"
6 #include "chrome/browser/defaults.h" 6 #include "chrome/browser/defaults.h"
7 7
8 namespace browser_defaults { 8 namespace browser_defaults {
9 9
10 #if defined(OS_CHROMEOS) || defined(OS_MACOSX) 10 #if defined(OS_CHROMEOS) || defined(OS_MACOSX)
(...skipping 22 matching lines...) Expand all
33 #else 33 #else
34 const bool kShowHelpMenuItemIcon = false; 34 const bool kShowHelpMenuItemIcon = false;
35 #endif 35 #endif
36 #endif 36 #endif
37 37
38 const bool kDownloadPageHasShowInFolder = true; 38 const bool kDownloadPageHasShowInFolder = true;
39 const bool kSizeTabButtonToTopOfTabStrip = false; 39 const bool kSizeTabButtonToTopOfTabStrip = false;
40 40
41 #if defined(OS_CHROMEOS) || defined(OS_ANDROID) 41 #if defined(OS_CHROMEOS) || defined(OS_ANDROID)
42 const bool kSyncAutoStarts = true; 42 const bool kSyncAutoStarts = true;
43 const bool kShowOtherBrowsersInAboutMemory = false;
44 #else 43 #else
45 const bool kSyncAutoStarts = false; 44 const bool kSyncAutoStarts = false;
46 const bool kShowOtherBrowsersInAboutMemory = true;
47 #endif 45 #endif
48 46
49 #if defined(OS_LINUX) && !defined(OS_CHROMEOS) 47 #if defined(OS_LINUX) && !defined(OS_CHROMEOS)
50 const bool kScrollEventChangesTab = true; 48 const bool kScrollEventChangesTab = true;
51 #else 49 #else
52 const bool kScrollEventChangesTab = false; 50 const bool kScrollEventChangesTab = false;
53 #endif 51 #endif
54 52
55 #if !defined(OS_ANDROID) 53 #if !defined(OS_ANDROID)
56 const bool kPasswordEchoEnabled = false; 54 const bool kPasswordEchoEnabled = false;
57 #endif 55 #endif
58 56
59 bool bookmarks_enabled = true; 57 bool bookmarks_enabled = true;
60 58
61 bool enable_help_app = true; 59 bool enable_help_app = true;
62 60
63 } // namespace browser_defaults 61 } // namespace browser_defaults
OLDNEW
« no previous file with comments | « chrome/browser/defaults.h ('k') | chrome/browser/history/history_utils.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698