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

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

Issue 2714853002: Remove kDistroDict from Preferences. (Closed)
Patch Set: kRlzPingDelay -> kRlzPingDelaySeconds Created 3 years, 9 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') | chrome/installer/util/BUILD.gn » ('j') | 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 168 matching lines...) Expand 10 before | Expand all | Expand 10 after
179 // Stores settings that can be modified both by a supervised user and their 179 // Stores settings that can be modified both by a supervised user and their
180 // manager. See SupervisedUserSharedSettingsService for a description of 180 // manager. See SupervisedUserSharedSettingsService for a description of
181 // the format. 181 // the format.
182 const char kSupervisedUserSharedSettings[] = "profile.managed.shared_settings"; 182 const char kSupervisedUserSharedSettings[] = "profile.managed.shared_settings";
183 183
184 // A dictionary storing whitelists for a supervised user. The key is the CRX ID 184 // A dictionary storing whitelists for a supervised user. The key is the CRX ID
185 // of the whitelist, the value a dictionary containing whitelist properties 185 // of the whitelist, the value a dictionary containing whitelist properties
186 // (currently the name). 186 // (currently the name).
187 const char kSupervisedUserWhitelists[] = "profile.managed.whitelists"; 187 const char kSupervisedUserWhitelists[] = "profile.managed.whitelists";
188 188
189 #if BUILDFLAG(ENABLE_RLZ)
190 // Integer. RLZ ping delay in seconds.
191 const char kRlzPingDelaySeconds[] = "rlz_ping_delay";
192 #endif // BUILDFLAG(ENABLE_RLZ)
193
189 // The application locale. 194 // The application locale.
190 // For OS_CHROMEOS we maintain the kApplicationLocale property in both local 195 // For OS_CHROMEOS we maintain the kApplicationLocale property in both local
191 // state and the user's profile. The global property determines the locale of 196 // state and the user's profile. The global property determines the locale of
192 // the login screen, while the user's profile determines their personal locale 197 // the login screen, while the user's profile determines their personal locale
193 // preference. 198 // preference.
194 const char kApplicationLocale[] = "intl.app_locale"; 199 const char kApplicationLocale[] = "intl.app_locale";
195 #if defined(OS_CHROMEOS) 200 #if defined(OS_CHROMEOS)
196 // Locale preference of device' owner. ChromeOS device appears in this locale 201 // Locale preference of device' owner. ChromeOS device appears in this locale
197 // after startup/wakeup/signout. 202 // after startup/wakeup/signout.
198 const char kOwnerLocale[] = "intl.owner_locale"; 203 const char kOwnerLocale[] = "intl.owner_locale";
(...skipping 2273 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
OLDNEW
« no previous file with comments | « chrome/common/pref_names.h ('k') | chrome/installer/util/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698