Chromium Code Reviews| 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/common/pref_names.h" | 5 #include "chrome/common/pref_names.h" |
| 6 | 6 |
| 7 #include "base/basictypes.h" | 7 #include "base/basictypes.h" |
| 8 #include "chrome/common/pref_font_webkit_names.h" | 8 #include "chrome/common/pref_font_webkit_names.h" |
| 9 | 9 |
| 10 namespace prefs { | 10 namespace prefs { |
| (...skipping 849 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 860 // GAIA using SAML. The preference is updated whenever the user authenticates | 860 // GAIA using SAML. The preference is updated whenever the user authenticates |
| 861 // against GAIA: If GAIA redirects to a SAML IdP, the preference is set to the | 861 // against GAIA: If GAIA redirects to a SAML IdP, the preference is set to the |
| 862 // current time. If GAIA performs the authentication itself, the preference is | 862 // current time. If GAIA performs the authentication itself, the preference is |
| 863 // cleared. The time is expressed as the serialization obtained from | 863 // cleared. The time is expressed as the serialization obtained from |
| 864 // base::Time::ToInternalValue(). | 864 // base::Time::ToInternalValue(). |
| 865 const char kSAMLLastGAIASignInTime[] = "saml.last_gaia_sign_in_time"; | 865 const char kSAMLLastGAIASignInTime[] = "saml.last_gaia_sign_in_time"; |
| 866 | 866 |
| 867 // The total number of seconds that the machine has spent sitting on the | 867 // The total number of seconds that the machine has spent sitting on the |
| 868 // OOBE screen. | 868 // OOBE screen. |
| 869 const char kTimeOnOobe[] = "settings.time_on_oobe"; | 869 const char kTimeOnOobe[] = "settings.time_on_oobe"; |
| 870 | |
| 871 // List of mounted file systems via the File System Provider API. Used to | |
| 872 // restore them after a reboot. | |
| 873 const char kFSPMountedFileSystems[] = "fsp.mounted_file_systems"; | |
|
hashimoto
2014/05/26 08:35:38
"FileSystemProvider" instead of "FSP"?
Our style g
mtomasz
2014/05/27 01:13:14
I was torn between fsp and fileSystemProvider, but
| |
| 870 #endif // defined(OS_CHROMEOS) | 874 #endif // defined(OS_CHROMEOS) |
| 871 | 875 |
| 872 // The disabled messages in IPC logging. | 876 // The disabled messages in IPC logging. |
| 873 const char kIpcDisabledMessages[] = "ipc_log_disabled_messages"; | 877 const char kIpcDisabledMessages[] = "ipc_log_disabled_messages"; |
| 874 | 878 |
| 875 // A boolean pref set to true if a Home button to open the Home pages should be | 879 // A boolean pref set to true if a Home button to open the Home pages should be |
| 876 // visible on the toolbar. | 880 // visible on the toolbar. |
| 877 const char kShowHomeButton[] = "browser.show_home_button"; | 881 const char kShowHomeButton[] = "browser.show_home_button"; |
| 878 | 882 |
| 879 // A string value which saves short list of recently user selected encodings | 883 // A string value which saves short list of recently user selected encodings |
| (...skipping 1625 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 2505 // "mapped_title" entries, detailing the bookmark target URL (if any), the title | 2509 // "mapped_title" entries, detailing the bookmark target URL (if any), the title |
| 2506 // given by the PartnerBookmarksProvider and either the user-visible renamed | 2510 // given by the PartnerBookmarksProvider and either the user-visible renamed |
| 2507 // title or an empty string if the bookmark node was removed. | 2511 // title or an empty string if the bookmark node was removed. |
| 2508 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings"; | 2512 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings"; |
| 2509 #endif | 2513 #endif |
| 2510 | 2514 |
| 2511 // Whether DNS Quick Check is disabled in proxy resolution. | 2515 // Whether DNS Quick Check is disabled in proxy resolution. |
| 2512 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; | 2516 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; |
| 2513 | 2517 |
| 2514 } // namespace prefs | 2518 } // namespace prefs |
| OLD | NEW |