Chromium Code Reviews| Index: chrome/browser/ui/cocoa/window_restore_utils.mm |
| diff --git a/chrome/browser/ui/cocoa/window_restore_utils.mm b/chrome/browser/ui/cocoa/window_restore_utils.mm |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..22a3209764ae171aa2e8854651d2fa8db6bb6a66 |
| --- /dev/null |
| +++ b/chrome/browser/ui/cocoa/window_restore_utils.mm |
| @@ -0,0 +1,24 @@ |
| +// Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +#import "chrome/browser/ui/cocoa/window_restore_utils.h" |
| + |
| +#import <Foundation/Foundation.h> |
| + |
| +#include "base/mac/mac_util.h" |
| + |
| +namespace restore_utils { |
| + |
| +bool IsWindowRestoreEnabled() { |
| + if (!base::mac::IsOSLionOrLater()) |
| + return false; |
| + |
| + NSUserDefaults* defaults = [NSUserDefaults standardUserDefaults]; |
| + // The defaults must be synchronized here otherwise a stale value will be |
| + // returned for an indeterminate amount of time. |
| + [defaults synchronize]; |
| + return !![defaults boolForKey:@"NSQuitAlwaysKeepsWindows"]; |
|
Robert Sesek
2011/07/29 21:33:16
Dave, take a look at http://codereview.chromium.or
|
| +} |
| + |
| +} // namespace restore_utils |