| 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" |
| 11 #include "extensions/features/features.h" | 11 #include "extensions/features/features.h" |
| 12 #include "media/media_features.h" | 12 #include "media/media_features.h" |
| 13 #include "ppapi/features/features.h" | 13 #include "ppapi/features/features.h" |
| 14 | 14 |
| 15 namespace prefs { | 15 namespace prefs { |
| 16 | 16 |
| 17 // *************** PROFILE PREFS *************** | 17 // *************** PROFILE PREFS *************** |
| 18 // These are attached to the user profile | 18 // These are attached to the user profile |
| 19 | 19 |
| 20 #if defined(OS_CHROMEOS) && BUILDFLAG(ENABLE_APP_LIST) | 20 #if defined(OS_CHROMEOS) && BUILDFLAG(ENABLE_APP_LIST) |
| 21 // Stores the user id received from DM Server when enrolling a Play user on an |
| 22 // Active Directory managed device. Used to report to DM Server that the account |
| 23 // is still used. |
| 24 const char kArcActiveDirectoryPlayUserId[] = |
| 25 "arc.active_directory_play_user_id"; |
| 21 // A preference to keep list of Android apps and their state. | 26 // A preference to keep list of Android apps and their state. |
| 22 const char kArcApps[] = "arc.apps"; | 27 const char kArcApps[] = "arc.apps"; |
| 23 // A preference to store backup and restore state for Android apps. | 28 // A preference to store backup and restore state for Android apps. |
| 24 const char kArcBackupRestoreEnabled[] = "arc.backup_restore.enabled"; | 29 const char kArcBackupRestoreEnabled[] = "arc.backup_restore.enabled"; |
| 25 // A preference to indicate that Android's data directory should be removed. | 30 // A preference to indicate that Android's data directory should be removed. |
| 26 const char kArcDataRemoveRequested[] = "arc.data.remove_requested"; | 31 const char kArcDataRemoveRequested[] = "arc.data.remove_requested"; |
| 27 // A preference representing whether a user has opted in to use Google Play | 32 // A preference representing whether a user has opted in to use Google Play |
| 28 // Store on ARC. | 33 // Store on ARC. |
| 29 // TODO(hidehiko): For historical reason, now the preference name does not | 34 // TODO(hidehiko): For historical reason, now the preference name does not |
| 30 // directly reflect "Google Play Store". We should get and set the values via | 35 // directly reflect "Google Play Store". We should get and set the values via |
| (...skipping 2441 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2472 | 2477 |
| 2473 // Number of times user has seen the "desktop to iOS" history page promotion. | 2478 // Number of times user has seen the "desktop to iOS" history page promotion. |
| 2474 const char kNumberHistoryPageIOSPromoShown[] = | 2479 const char kNumberHistoryPageIOSPromoShown[] = |
| 2475 "history_page_ios_promo_shown_count"; | 2480 "history_page_ios_promo_shown_count"; |
| 2476 | 2481 |
| 2477 // True if the user has dismissed the "desktop to iOS" history page promotion. | 2482 // True if the user has dismissed the "desktop to iOS" history page promotion. |
| 2478 const char kHistoryPageIOSPromoDismissed[] = "history_page_ios_promo_dismissed"; | 2483 const char kHistoryPageIOSPromoDismissed[] = "history_page_ios_promo_dismissed"; |
| 2479 #endif | 2484 #endif |
| 2480 | 2485 |
| 2481 } // namespace prefs | 2486 } // namespace prefs |
| OLD | NEW |