| 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 162 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 173 // Stores settings that can be modified both by a supervised user and their | 173 // Stores settings that can be modified both by a supervised user and their |
| 174 // manager. See SupervisedUserSharedSettingsService for a description of | 174 // manager. See SupervisedUserSharedSettingsService for a description of |
| 175 // the format. | 175 // the format. |
| 176 const char kSupervisedUserSharedSettings[] = "profile.managed.shared_settings"; | 176 const char kSupervisedUserSharedSettings[] = "profile.managed.shared_settings"; |
| 177 | 177 |
| 178 // A dictionary storing whitelists for a supervised user. The key is the CRX ID | 178 // A dictionary storing whitelists for a supervised user. The key is the CRX ID |
| 179 // of the whitelist, the value a dictionary containing whitelist properties | 179 // of the whitelist, the value a dictionary containing whitelist properties |
| 180 // (currently the name). | 180 // (currently the name). |
| 181 const char kSupervisedUserWhitelists[] = "profile.managed.whitelists"; | 181 const char kSupervisedUserWhitelists[] = "profile.managed.whitelists"; |
| 182 | 182 |
| 183 // Stores information about the important sites dialog, including the time and |
| 184 // frequency it has been ignored. |
| 185 const char kImportantSitesDialogHistory = "important_sites_dialog"; |
| 186 |
| 183 // The application locale. | 187 // The application locale. |
| 184 // For OS_CHROMEOS we maintain the kApplicationLocale property in both local | 188 // For OS_CHROMEOS we maintain the kApplicationLocale property in both local |
| 185 // state and the user's profile. The global property determines the locale of | 189 // state and the user's profile. The global property determines the locale of |
| 186 // the login screen, while the user's profile determines their personal locale | 190 // the login screen, while the user's profile determines their personal locale |
| 187 // preference. | 191 // preference. |
| 188 const char kApplicationLocale[] = "intl.app_locale"; | 192 const char kApplicationLocale[] = "intl.app_locale"; |
| 189 #if defined(OS_CHROMEOS) | 193 #if defined(OS_CHROMEOS) |
| 190 // Locale preference of device' owner. ChromeOS device appears in this locale | 194 // Locale preference of device' owner. ChromeOS device appears in this locale |
| 191 // after startup/wakeup/signout. | 195 // after startup/wakeup/signout. |
| 192 const char kOwnerLocale[] = "intl.owner_locale"; | 196 const char kOwnerLocale[] = "intl.owner_locale"; |
| (...skipping 2189 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2382 // default search engine, if it is the Google search engine. | 2386 // default search engine, if it is the Google search engine. |
| 2383 const char kGoogleDSEGeolocationSetting[] = "google_dse_geolocation_setting"; | 2387 const char kGoogleDSEGeolocationSetting[] = "google_dse_geolocation_setting"; |
| 2384 | 2388 |
| 2385 // A dictionary of manifest URLs of Web Share Targets to a dictionary containing | 2389 // A dictionary of manifest URLs of Web Share Targets to a dictionary containing |
| 2386 // attributes of its share_target field found in its manifest. Each key in the | 2390 // attributes of its share_target field found in its manifest. Each key in the |
| 2387 // dictionary is the name of the attribute, and the value is the corresponding | 2391 // dictionary is the name of the attribute, and the value is the corresponding |
| 2388 // value. | 2392 // value. |
| 2389 const char kWebShareVisitedTargets[] = "profile.web_share.visited_targets"; | 2393 const char kWebShareVisitedTargets[] = "profile.web_share.visited_targets"; |
| 2390 | 2394 |
| 2391 } // namespace prefs | 2395 } // namespace prefs |
| OLD | NEW |