OLD | NEW |
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 "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(USE_AURA) | 9 #if defined(USE_AURA) |
10 const bool kOSSupportsOtherBrowsers = false; | 10 const bool kOSSupportsOtherBrowsers = false; |
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
111 // Getting started guide shown as an app window (session restore is skipped). | 111 // Getting started guide shown as an app window (session restore is skipped). |
112 // In all other cases (existing user) we're initializing to empty desktop | 112 // In all other cases (existing user) we're initializing to empty desktop |
113 // if session restore is empty. http://crbug.com/141718 | 113 // if session restore is empty. http://crbug.com/141718 |
114 const bool kAlwaysCreateTabbedBrowserOnSessionRestore = false; | 114 const bool kAlwaysCreateTabbedBrowserOnSessionRestore = false; |
115 #else | 115 #else |
116 const bool kAlwaysCreateTabbedBrowserOnSessionRestore = true; | 116 const bool kAlwaysCreateTabbedBrowserOnSessionRestore = true; |
117 #endif | 117 #endif |
118 | 118 |
119 bool bookmarks_enabled = true; | 119 bool bookmarks_enabled = true; |
120 | 120 |
121 bool enable_component_quick_office = true; | |
122 | |
123 bool enable_help_app = true; | 121 bool enable_help_app = true; |
124 | 122 |
125 } // namespace browser_defaults | 123 } // namespace browser_defaults |
OLD | NEW |