diff options
Diffstat (limited to 'chrome/common')
-rw-r--r-- | chrome/common/pref_names.cc | 4 | ||||
-rw-r--r-- | chrome/common/pref_names.h | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/chrome/common/pref_names.cc b/chrome/common/pref_names.cc index 39fdb86..45ca3a1 100644 --- a/chrome/common/pref_names.cc +++ b/chrome/common/pref_names.cc @@ -309,6 +309,10 @@ const wchar_t kPerHostContentSettings[] = L"profile.per_host_content_settings"; // regardless of other content settings. const wchar_t kBlockThirdPartyCookies[] = L"profile.block_third_party_cookies"; +// Boolean that is true when all locally stored site data (e.g. cookies, local +// storage, etc..) should be deleted on exit. +const wchar_t kClearSiteDataOnExit[] = L"profile.clear_site_data_on_exit"; + // Dictionary that maps hostnames to zoom levels. Hosts not in this pref will // be displayed at the default zoom level. const wchar_t kPerHostZoomLevels[] = L"profile.per_host_zoom_levels"; diff --git a/chrome/common/pref_names.h b/chrome/common/pref_names.h index da24ab0..2c8cfc0 100644 --- a/chrome/common/pref_names.h +++ b/chrome/common/pref_names.h @@ -121,6 +121,7 @@ extern const wchar_t kDesktopNotificationDeniedOrigins[]; extern const wchar_t kDefaultContentSettings[]; extern const wchar_t kPerHostContentSettings[]; extern const wchar_t kBlockThirdPartyCookies[]; +extern const wchar_t kClearSiteDataOnExit[]; extern const wchar_t kPerHostZoomLevels[]; extern const wchar_t kAutoFillInfoBarShown[]; extern const wchar_t kAutoFillEnabled[]; |