| 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/macros.h" | 7 #include "base/macros.h" |
| 8 #include "build/build_config.h" | 8 #include "build/build_config.h" |
| 9 #include "chrome/common/features.h" | 9 #include "chrome/common/features.h" |
| 10 #include "chrome/common/pref_font_webkit_names.h" | 10 #include "chrome/common/pref_font_webkit_names.h" |
| (...skipping 29 matching lines...) Expand all Loading... |
| 40 const char kArcTermsAccepted[] = "arc.terms.accepted"; | 40 const char kArcTermsAccepted[] = "arc.terms.accepted"; |
| 41 // A preference to keep user's consent to use location service. | 41 // A preference to keep user's consent to use location service. |
| 42 const char kArcLocationServiceEnabled[] = "arc.location_service.enabled"; | 42 const char kArcLocationServiceEnabled[] = "arc.location_service.enabled"; |
| 43 // A preference to keep list of Android packages and their infomation. | 43 // A preference to keep list of Android packages and their infomation. |
| 44 const char kArcPackages[] = "arc.packages"; | 44 const char kArcPackages[] = "arc.packages"; |
| 45 // A preference to keep deferred requests of setting notifications enabled flag. | 45 // A preference to keep deferred requests of setting notifications enabled flag. |
| 46 const char kArcSetNotificationsEnabledDeferred[] = | 46 const char kArcSetNotificationsEnabledDeferred[] = |
| 47 "arc.set_notifications_enabled_deferred"; | 47 "arc.set_notifications_enabled_deferred"; |
| 48 // A preference that indicates status of Android sign-in. | 48 // A preference that indicates status of Android sign-in. |
| 49 const char kArcSignedIn[] = "arc.signedin"; | 49 const char kArcSignedIn[] = "arc.signedin"; |
| 50 // A preference that indicates am ARC comaptible filesystem was chosen for |
| 51 // the user directory (i.e., the user finished required migration.) |
| 52 extern const char kArcCompatibleFilesystemChosen[] = |
| 53 "arc.compatible_filesystem.chosen"; |
| 50 #endif | 54 #endif |
| 51 | 55 |
| 52 // A bool pref that keeps whether the child status for this profile was already | 56 // A bool pref that keeps whether the child status for this profile was already |
| 53 // successfully checked via ChildAccountService. | 57 // successfully checked via ChildAccountService. |
| 54 const char kChildAccountStatusKnown[] = "child_account_status_known"; | 58 const char kChildAccountStatusKnown[] = "child_account_status_known"; |
| 55 | 59 |
| 56 // A string property indicating whether default apps should be installed | 60 // A string property indicating whether default apps should be installed |
| 57 // in this profile. Use the value "install" to enable defaults apps, or | 61 // in this profile. Use the value "install" to enable defaults apps, or |
| 58 // "noinstall" to disable them. This property is usually set in the | 62 // "noinstall" to disable them. This property is usually set in the |
| 59 // master_preferences and copied into the profile preferences on first run. | 63 // master_preferences and copied into the profile preferences on first run. |
| (...skipping 2461 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2521 // settings. | 2525 // settings. |
| 2522 const char kSettingsResetPromptLastTriggeredForStartupUrls[] = | 2526 const char kSettingsResetPromptLastTriggeredForStartupUrls[] = |
| 2523 "settings_reset_prompt.last_triggered_for_startup_urls"; | 2527 "settings_reset_prompt.last_triggered_for_startup_urls"; |
| 2524 | 2528 |
| 2525 // Timestamp of the last time the settings reset prompt was shown during the | 2529 // Timestamp of the last time the settings reset prompt was shown during the |
| 2526 // current prompt wave asking the user if they want to restore their homepage. | 2530 // current prompt wave asking the user if they want to restore their homepage. |
| 2527 const char kSettingsResetPromptLastTriggeredForHomepage[] = | 2531 const char kSettingsResetPromptLastTriggeredForHomepage[] = |
| 2528 "settings_reset_prompt.last_triggered_for_homepage"; | 2532 "settings_reset_prompt.last_triggered_for_homepage"; |
| 2529 | 2533 |
| 2530 } // namespace prefs | 2534 } // namespace prefs |
| OLD | NEW |