OLD | NEW |
1 // Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-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/common/pref_names.h" | 5 #include "chrome/common/pref_names.h" |
6 | 6 |
7 namespace prefs { | 7 namespace prefs { |
8 | 8 |
9 // *************** PROFILE PREFS *************** | 9 // *************** PROFILE PREFS *************** |
10 // These are attached to the user profile | 10 // These are attached to the user profile |
(...skipping 249 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
260 // GTK specific preference on whether we should match the system GTK theme. | 260 // GTK specific preference on whether we should match the system GTK theme. |
261 const wchar_t kUsesSystemTheme[] = L"extensions.theme.use_system"; | 261 const wchar_t kUsesSystemTheme[] = L"extensions.theme.use_system"; |
262 #endif | 262 #endif |
263 const wchar_t kCurrentThemeID[] = L"extensions.theme.id"; | 263 const wchar_t kCurrentThemeID[] = L"extensions.theme.id"; |
264 const wchar_t kCurrentThemeImages[] = L"extensions.theme.images"; | 264 const wchar_t kCurrentThemeImages[] = L"extensions.theme.images"; |
265 const wchar_t kCurrentThemeColors[] = L"extensions.theme.colors"; | 265 const wchar_t kCurrentThemeColors[] = L"extensions.theme.colors"; |
266 const wchar_t kCurrentThemeTints[] = L"extensions.theme.tints"; | 266 const wchar_t kCurrentThemeTints[] = L"extensions.theme.tints"; |
267 const wchar_t kCurrentThemeDisplayProperties[] = | 267 const wchar_t kCurrentThemeDisplayProperties[] = |
268 L"extensions.theme.properties"; | 268 L"extensions.theme.properties"; |
269 | 269 |
| 270 // Boolean pref which persists whether the extensions_ui is in developer mode |
| 271 // (showing developer packing tools and extensions details) |
| 272 const wchar_t kExtensionsUIDeveloperMode[] = L"extensions.ui.developer_mode"; |
| 273 |
270 // Boolean that indicates whether we should check if we are the default browser | 274 // Boolean that indicates whether we should check if we are the default browser |
271 // on start-up. | 275 // on start-up. |
272 const wchar_t kCheckDefaultBrowser[] = L"browser.check_default_browser"; | 276 const wchar_t kCheckDefaultBrowser[] = L"browser.check_default_browser"; |
273 | 277 |
274 // Boolean that is false if we should show window manager decorations. If | 278 // Boolean that is false if we should show window manager decorations. If |
275 // true, we draw a custom chrome frame (thicker title bar and blue border). | 279 // true, we draw a custom chrome frame (thicker title bar and blue border). |
276 const wchar_t kUseCustomChromeFrame[] = L"browser.custom_chrome_frame"; | 280 const wchar_t kUseCustomChromeFrame[] = L"browser.custom_chrome_frame"; |
277 | 281 |
278 // Boolean that indicates whether the infobar explaining that search can be done | 282 // Boolean that indicates whether the infobar explaining that search can be done |
279 // directly from the omnibox should be shown. | 283 // directly from the omnibox should be shown. |
(...skipping 306 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
586 // Integer location of the split bar in the browser view. | 590 // Integer location of the split bar in the browser view. |
587 const wchar_t kDevToolsSplitLocation[] = L"devtools.split_location"; | 591 const wchar_t kDevToolsSplitLocation[] = L"devtools.split_location"; |
588 | 592 |
589 // 64-bit integer serialization of the base::Time when the last sync occured. | 593 // 64-bit integer serialization of the base::Time when the last sync occured. |
590 const wchar_t kSyncLastSyncedTime[] = L"sync.last_synced_time"; | 594 const wchar_t kSyncLastSyncedTime[] = L"sync.last_synced_time"; |
591 | 595 |
592 // Boolean specifying whether the user finished setting up sync. | 596 // Boolean specifying whether the user finished setting up sync. |
593 const wchar_t kSyncHasSetupCompleted[] = L"sync.has_setup_completed"; | 597 const wchar_t kSyncHasSetupCompleted[] = L"sync.has_setup_completed"; |
594 | 598 |
595 } // namespace prefs | 599 } // namespace prefs |
OLD | NEW |