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

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

Issue 2850123002: M58: arc: Set migration success notification pref. (Closed)
Patch Set: Fix some comment for M58 Created 3 years, 7 months 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
« no previous file with comments | « chrome/common/pref_names.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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"
(...skipping 24 matching lines...) Expand all
35 const char kArcTermsAccepted[] = "arc.terms.accepted"; 35 const char kArcTermsAccepted[] = "arc.terms.accepted";
36 // A preference to keep user's consent to use location service. 36 // A preference to keep user's consent to use location service.
37 const char kArcLocationServiceEnabled[] = "arc.location_service.enabled"; 37 const char kArcLocationServiceEnabled[] = "arc.location_service.enabled";
38 // A preference to keep list of Android packages and their infomation. 38 // A preference to keep list of Android packages and their infomation.
39 const char kArcPackages[] = "arc.packages"; 39 const char kArcPackages[] = "arc.packages";
40 // A preference to keep deferred requests of setting notifications enabled flag. 40 // A preference to keep deferred requests of setting notifications enabled flag.
41 const char kArcSetNotificationsEnabledDeferred[] = 41 const char kArcSetNotificationsEnabledDeferred[] =
42 "arc.set_notifications_enabled_deferred"; 42 "arc.set_notifications_enabled_deferred";
43 // A preference that indicates status of Android sign-in. 43 // A preference that indicates status of Android sign-in.
44 const char kArcSignedIn[] = "arc.signedin"; 44 const char kArcSignedIn[] = "arc.signedin";
45 // A preference that indicates an ARC comaptible filesystem was chosen for
46 // the user directory (i.e., the user finished required migration.)
47 const char kArcCompatibleFilesystemChosen[] =
48 "arc.compatible_filesystem.chosen";
45 #endif 49 #endif
46 50
47 // A bool pref that keeps whether the child status for this profile was already 51 // A bool pref that keeps whether the child status for this profile was already
48 // successfully checked via ChildAccountService. 52 // successfully checked via ChildAccountService.
49 const char kChildAccountStatusKnown[] = "child_account_status_known"; 53 const char kChildAccountStatusKnown[] = "child_account_status_known";
50 54
51 // A string property indicating whether default apps should be installed 55 // A string property indicating whether default apps should be installed
52 // in this profile. Use the value "install" to enable defaults apps, or 56 // in this profile. Use the value "install" to enable defaults apps, or
53 // "noinstall" to disable them. This property is usually set in the 57 // "noinstall" to disable them. This property is usually set in the
54 // master_preferences and copied into the profile preferences on first run. 58 // master_preferences and copied into the profile preferences on first run.
(...skipping 2454 matching lines...) Expand 10 before | Expand all | Expand 10 after
2509 // settings. 2513 // settings.
2510 const char kSettingsResetPromptLastTriggeredForStartupUrls[] = 2514 const char kSettingsResetPromptLastTriggeredForStartupUrls[] =
2511 "settings_reset_prompt.last_triggered_for_startup_urls"; 2515 "settings_reset_prompt.last_triggered_for_startup_urls";
2512 2516
2513 // Timestamp of the last time the settings reset prompt was shown during the 2517 // Timestamp of the last time the settings reset prompt was shown during the
2514 // current prompt wave asking the user if they want to restore their homepage. 2518 // current prompt wave asking the user if they want to restore their homepage.
2515 const char kSettingsResetPromptLastTriggeredForHomepage[] = 2519 const char kSettingsResetPromptLastTriggeredForHomepage[] =
2516 "settings_reset_prompt.last_triggered_for_homepage"; 2520 "settings_reset_prompt.last_triggered_for_homepage";
2517 2521
2518 } // namespace prefs 2522 } // namespace prefs
OLDNEW
« no previous file with comments | « chrome/common/pref_names.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698