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

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

Issue 1542413002: Switch to standard integer types in chrome/browser/, part 1 of 4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 12 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 "build/build_config.h"
5 #include "chrome/browser/defaults.h" 6 #include "chrome/browser/defaults.h"
6 7
7 namespace browser_defaults { 8 namespace browser_defaults {
8 9
9 #if defined(OS_CHROMEOS) || defined(OS_MACOSX) 10 #if defined(OS_CHROMEOS) || defined(OS_MACOSX)
10 const bool kBrowserAliveWithNoWindows = true; 11 const bool kBrowserAliveWithNoWindows = true;
11 const bool kShowExitMenuItem = false; 12 const bool kShowExitMenuItem = false;
12 #else 13 #else
13 const bool kBrowserAliveWithNoWindows = false; 14 const bool kBrowserAliveWithNoWindows = false;
14 const bool kShowExitMenuItem = true; 15 const bool kShowExitMenuItem = true;
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
53 54
54 #if !defined(OS_ANDROID) 55 #if !defined(OS_ANDROID)
55 const bool kPasswordEchoEnabled = false; 56 const bool kPasswordEchoEnabled = false;
56 #endif 57 #endif
57 58
58 bool bookmarks_enabled = true; 59 bool bookmarks_enabled = true;
59 60
60 bool enable_help_app = true; 61 bool enable_help_app = true;
61 62
62 } // namespace browser_defaults 63 } // namespace browser_defaults
OLDNEW
« no previous file with comments | « chrome/browser/data_usage/tab_id_provider.cc ('k') | chrome/browser/devtools/chrome_devtools_discovery_provider.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698