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

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

Issue 362016: Mac: don't restore explicitly closed windows. (Closed)
Patch Set: Updated comment per sky's re-review. Created 11 years, 1 month 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.h » ('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) 2009 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
(...skipping 29 matching lines...) Expand all
40 40
41 #if !defined(OS_CHROMEOS) 41 #if !defined(OS_CHROMEOS)
42 42
43 const SessionStartupPref::Type kDefaultSessionStartupType = 43 const SessionStartupPref::Type kDefaultSessionStartupType =
44 SessionStartupPref::DEFAULT; 44 SessionStartupPref::DEFAULT;
45 const int kPinnedTabWidth = 56; 45 const int kPinnedTabWidth = 56;
46 const bool kRestorePopups = false; 46 const bool kRestorePopups = false;
47 47
48 #endif 48 #endif
49 49
50 #if defined(OS_MACOSX)
51 const bool kBrowserAliveWithNoWindows = true;
52 #else
53 const bool kBrowserAliveWithNoWindows = false;
54 #endif
55
50 } // namespace browser_defaults 56 } // namespace browser_defaults
OLDNEW
« no previous file with comments | « chrome/browser/defaults.h ('k') | chrome/browser/sessions/session_service.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698