Chromium Code Reviews| 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 1324 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1335 #if !defined(OS_ANDROID) | 1335 #if !defined(OS_ANDROID) |
| 1336 // Whether or not this profile has been shown the Welcome page. | 1336 // Whether or not this profile has been shown the Welcome page. |
| 1337 const char kHasSeenWelcomePage[] = "browser.has_seen_welcome_page"; | 1337 const char kHasSeenWelcomePage[] = "browser.has_seen_welcome_page"; |
| 1338 #endif | 1338 #endif |
| 1339 | 1339 |
| 1340 #if defined(OS_WIN) | 1340 #if defined(OS_WIN) |
| 1341 // Whether or not this profile has been shown the Win10 promo page. | 1341 // Whether or not this profile has been shown the Win10 promo page. |
| 1342 const char kHasSeenWin10PromoPage[] = "browser.has_seen_win10_promo_page"; | 1342 const char kHasSeenWin10PromoPage[] = "browser.has_seen_win10_promo_page"; |
| 1343 #endif | 1343 #endif |
| 1344 | 1344 |
| 1345 // *************** LOCAL STATE *************** | 1345 // *************** LOCAL STATE *************** |
|
gab
2017/02/06 20:34:01
I know it's non-obvious... but profile prefs go ab
dmurph
2017/02/06 23:34:22
Done.
| |
| 1346 // These are attached to the machine/installation | 1346 // These are attached to the machine/installation |
| 1347 | 1347 |
| 1348 // Directory of the last profile used. | 1348 // Directory of the last profile used. |
| 1349 const char kProfileLastUsed[] = "profile.last_used"; | 1349 const char kProfileLastUsed[] = "profile.last_used"; |
| 1350 | 1350 |
| 1351 // List of directories of the profiles last active. | 1351 // List of directories of the profiles last active. |
| 1352 const char kProfilesLastActive[] = "profile.last_active_profiles"; | 1352 const char kProfilesLastActive[] = "profile.last_active_profiles"; |
| 1353 | 1353 |
| 1354 // Total number of profiles created for this Chrome build. Used to tag profile | 1354 // Total number of profiles created for this Chrome build. Used to tag profile |
| 1355 // directories. | 1355 // directories. |
| (...skipping 1025 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 2381 // A dictionary which stores whether location access is enabled for the current | 2381 // A dictionary which stores whether location access is enabled for the current |
| 2382 // default search engine, if it is the Google search engine. | 2382 // default search engine, if it is the Google search engine. |
| 2383 const char kGoogleDSEGeolocationSetting[] = "google_dse_geolocation_setting"; | 2383 const char kGoogleDSEGeolocationSetting[] = "google_dse_geolocation_setting"; |
| 2384 | 2384 |
| 2385 // A dictionary of manifest URLs of Web Share Targets to a dictionary containing | 2385 // 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 | 2386 // 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 | 2387 // dictionary is the name of the attribute, and the value is the corresponding |
| 2388 // value. | 2388 // value. |
| 2389 const char kWebShareVisitedTargets[] = "profile.web_share.visited_targets"; | 2389 const char kWebShareVisitedTargets[] = "profile.web_share.visited_targets"; |
| 2390 | 2390 |
| 2391 // A dictionary which stores when and how many times the user has ignored the | |
| 2392 // important sites dialog. | |
| 2393 const char kImportantSitesDialogHistory[] = "important_sites.dialog_history"; | |
|
gab
2017/02/06 20:34:01
"important_sites." is not an existing prefs namesp
dmurph
2017/02/06 23:34:22
It doesn't look like there's anything else - putti
| |
| 2394 | |
| 2391 } // namespace prefs | 2395 } // namespace prefs |
| OLD | NEW |