| 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 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 47 const char kArcPackages[] = "arc.packages"; | 47 const char kArcPackages[] = "arc.packages"; |
| 48 // A preference to keep deferred requests of setting notifications enabled flag. | 48 // A preference to keep deferred requests of setting notifications enabled flag. |
| 49 const char kArcSetNotificationsEnabledDeferred[] = | 49 const char kArcSetNotificationsEnabledDeferred[] = |
| 50 "arc.set_notifications_enabled_deferred"; | 50 "arc.set_notifications_enabled_deferred"; |
| 51 // A preference that indicates status of Android sign-in. | 51 // A preference that indicates status of Android sign-in. |
| 52 const char kArcSignedIn[] = "arc.signedin"; | 52 const char kArcSignedIn[] = "arc.signedin"; |
| 53 // A preference that indicates an ARC comaptible filesystem was chosen for | 53 // A preference that indicates an ARC comaptible filesystem was chosen for |
| 54 // the user directory (i.e., the user finished required migration.) | 54 // the user directory (i.e., the user finished required migration.) |
| 55 extern const char kArcCompatibleFilesystemChosen[] = | 55 extern const char kArcCompatibleFilesystemChosen[] = |
| 56 "arc.compatible_filesystem.chosen"; | 56 "arc.compatible_filesystem.chosen"; |
| 57 // A preference that indicates that user accepted Assistant Value Prop. |
| 58 const char kArcVoiceInteractionValuePropAccepted[] = |
| 59 "arc.voice_interaction_value_prop.accepted"; |
| 57 #endif | 60 #endif |
| 58 | 61 |
| 59 // A bool pref that keeps whether the child status for this profile was already | 62 // A bool pref that keeps whether the child status for this profile was already |
| 60 // successfully checked via ChildAccountService. | 63 // successfully checked via ChildAccountService. |
| 61 const char kChildAccountStatusKnown[] = "child_account_status_known"; | 64 const char kChildAccountStatusKnown[] = "child_account_status_known"; |
| 62 | 65 |
| 63 // A string property indicating whether default apps should be installed | 66 // A string property indicating whether default apps should be installed |
| 64 // in this profile. Use the value "install" to enable defaults apps, or | 67 // in this profile. Use the value "install" to enable defaults apps, or |
| 65 // "noinstall" to disable them. This property is usually set in the | 68 // "noinstall" to disable them. This property is usually set in the |
| 66 // master_preferences and copied into the profile preferences on first run. | 69 // master_preferences and copied into the profile preferences on first run. |
| (...skipping 2487 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2554 // internal format (int64) in local store. (I.e., this is not a per-profile | 2557 // internal format (int64) in local store. (I.e., this is not a per-profile |
| 2555 // pref.) | 2558 // pref.) |
| 2556 const char kClipboardLastModifiedTime[] = "ui.clipboard.last_modified_time"; | 2559 const char kClipboardLastModifiedTime[] = "ui.clipboard.last_modified_time"; |
| 2557 #endif | 2560 #endif |
| 2558 | 2561 |
| 2559 #if BUILDFLAG(ENABLE_OFFLINE_PAGES) | 2562 #if BUILDFLAG(ENABLE_OFFLINE_PAGES) |
| 2560 const char kOfflinePrefetchBackoff[] = "offline_prefetch.backoff"; | 2563 const char kOfflinePrefetchBackoff[] = "offline_prefetch.backoff"; |
| 2561 #endif | 2564 #endif |
| 2562 | 2565 |
| 2563 } // namespace prefs | 2566 } // namespace prefs |
| OLD | NEW |