Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2)

Side by Side Diff: chrome/common/pref_names.cc

Issue 2541173002: arc: Make request to remove Android's data folder persistent. (Closed)
Patch Set: use states / rebased Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 // A preference to keep list of Android apps and their state. 21 // A preference to keep list of Android apps and their state.
22 const char kArcApps[] = "arc.apps"; 22 const char kArcApps[] = "arc.apps";
23 // A preference to store backup and restore state for Android apps. 23 // A preference to store backup and restore state for Android apps.
24 const char kArcBackupRestoreEnabled[] = "arc.backup_restore.enabled"; 24 const char kArcBackupRestoreEnabled[] = "arc.backup_restore.enabled";
25 // A preference to indicate that Android's data directory should be removed.
26 const char kArcDataRemoveRequested[] = "arc.data.remove_requested";
25 // A preference to keep Android apps enabled state. 27 // A preference to keep Android apps enabled state.
26 const char kArcEnabled[] = "arc.enabled"; 28 const char kArcEnabled[] = "arc.enabled";
27 // A preference that indicated whether Android reported that it's compliant 29 // A preference that indicated whether Android reported that it's compliant
28 // with provided policies. When it's compliant, Android kiosk app will start. 30 // with provided policies. When it's compliant, Android kiosk app will start.
29 const char kArcPolicyCompliant[] = "arc.policy_compliant"; 31 const char kArcPolicyCompliant[] = "arc.policy_compliant";
30 // A preference that indicates that user accepted PlayStore terms. 32 // A preference that indicates that user accepted PlayStore terms.
31 const char kArcTermsAccepted[] = "arc.terms.accepted"; 33 const char kArcTermsAccepted[] = "arc.terms.accepted";
32 // A preference to keep user's consent to use location service. 34 // A preference to keep user's consent to use location service.
33 const char kArcLocationServiceEnabled[] = "arc.location_service.enabled"; 35 const char kArcLocationServiceEnabled[] = "arc.location_service.enabled";
34 // A preference to keep list of Android packages and their infomation. 36 // A preference to keep list of Android packages and their infomation.
(...skipping 2295 matching lines...) Expand 10 before | Expand all | Expand 10 after
2330 const char kSearchGeolocationPreDisclosureMetricsRecorded[] = 2332 const char kSearchGeolocationPreDisclosureMetricsRecorded[] =
2331 "search_geolocation_pre_disclosure_metrics_recorded"; 2333 "search_geolocation_pre_disclosure_metrics_recorded";
2332 2334
2333 // Whether the metrics for the state of geolocation post-disclosure being shown 2335 // Whether the metrics for the state of geolocation post-disclosure being shown
2334 // have been recorded. 2336 // have been recorded.
2335 const char kSearchGeolocationPostDisclosureMetricsRecorded[] = 2337 const char kSearchGeolocationPostDisclosureMetricsRecorded[] =
2336 "search_geolocation_post_disclosure_metrics_recorded"; 2338 "search_geolocation_post_disclosure_metrics_recorded";
2337 #endif 2339 #endif
2338 2340
2339 } // namespace prefs 2341 } // namespace prefs
OLDNEW
« chrome/browser/chromeos/arc/arc_session_manager_unittest.cc ('K') | « chrome/common/pref_names.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698