| 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 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 61 // If set to true profiles are created in ephemeral mode and do not store their | 61 // If set to true profiles are created in ephemeral mode and do not store their |
| 62 // data in the profile folder on disk but only in memory. | 62 // data in the profile folder on disk but only in memory. |
| 63 const char kForceEphemeralProfiles[] = "profile.ephemeral_mode"; | 63 const char kForceEphemeralProfiles[] = "profile.ephemeral_mode"; |
| 64 | 64 |
| 65 // A boolean specifying whether the New Tab page is the home page or not. | 65 // A boolean specifying whether the New Tab page is the home page or not. |
| 66 const char kHomePageIsNewTabPage[] = "homepage_is_newtabpage"; | 66 const char kHomePageIsNewTabPage[] = "homepage_is_newtabpage"; |
| 67 | 67 |
| 68 // This is the URL of the page to load when opening new tabs. | 68 // This is the URL of the page to load when opening new tabs. |
| 69 const char kHomePage[] = "homepage"; | 69 const char kHomePage[] = "homepage"; |
| 70 | 70 |
| 71 // Stores information about the important sites dialog, including the time and |
| 72 // frequency it has been ignored. |
| 73 const char kImportantSitesDialogHistory[] = "important_sites_dialog"; |
| 74 |
| 71 #if defined(OS_WIN) | 75 #if defined(OS_WIN) |
| 72 // This is a timestamp of the last time this profile was reset by a third party | 76 // This is a timestamp of the last time this profile was reset by a third party |
| 73 // tool. On Windows, a third party tool may set a registry value that will be | 77 // tool. On Windows, a third party tool may set a registry value that will be |
| 74 // compared to this value and if different will result in a profile reset | 78 // compared to this value and if different will result in a profile reset |
| 75 // prompt. See triggered_profile_resetter.h for more information. | 79 // prompt. See triggered_profile_resetter.h for more information. |
| 76 const char kLastProfileResetTimestamp[] = "profile.last_reset_timestamp"; | 80 const char kLastProfileResetTimestamp[] = "profile.last_reset_timestamp"; |
| 77 #endif | 81 #endif |
| 78 | 82 |
| 79 // The URL to open the new tab page to. Only set by Group Policy. | 83 // The URL to open the new tab page to. Only set by Group Policy. |
| 80 const char kNewTabPageLocationOverride[] = "newtab_page_location_override"; | 84 const char kNewTabPageLocationOverride[] = "newtab_page_location_override"; |
| (...skipping 2301 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 |