| OLD | NEW |
| 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 // Defines various defaults whose values varies depending upon the OS. | 5 // Defines various defaults whose values varies depending upon the OS. |
| 6 | 6 |
| 7 #ifndef CHROME_BROWSER_DEFAULTS_H_ | 7 #ifndef CHROME_BROWSER_DEFAULTS_H_ |
| 8 #define CHROME_BROWSER_DEFAULTS_H_ | 8 #define CHROME_BROWSER_DEFAULTS_H_ |
| 9 | 9 |
| 10 #include "build/build_config.h" | 10 #include "build/build_config.h" |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 extern const int kAutocompletePopupFontSize; | 24 extern const int kAutocompletePopupFontSize; |
| 25 | 25 |
| 26 #endif | 26 #endif |
| 27 | 27 |
| 28 // The default value for session startup. | 28 // The default value for session startup. |
| 29 extern const SessionStartupPref::Type kDefaultSessionStartupType; | 29 extern const SessionStartupPref::Type kDefaultSessionStartupType; |
| 30 | 30 |
| 31 // On launching Chrome should we show the crash info bar if Chrome crashed? | 31 // On launching Chrome should we show the crash info bar if Chrome crashed? |
| 32 extern const bool kSuppressCrashInfoBar; | 32 extern const bool kSuppressCrashInfoBar; |
| 33 | 33 |
| 34 // Should we restore the last session if the user opted to restore the last | |
| 35 // session on startup and Chrome crashed? | |
| 36 // TODO(sky): this should be removed once Chrome OS cleanly shuts down Chrome. | |
| 37 extern const bool kRestoreAfterCrash; | |
| 38 | |
| 39 // Width of pinned tabs. | 34 // Width of pinned tabs. |
| 40 extern const int kPinnedTabWidth; | 35 extern const int kPinnedTabWidth; |
| 41 | 36 |
| 42 } // namespace browser_defaults | 37 } // namespace browser_defaults |
| 43 | 38 |
| 44 #endif // CHROME_BROWSER_DEFAULTS_H_ | 39 #endif // CHROME_BROWSER_DEFAULTS_H_ |
| OLD | NEW |