Chromium Code Reviews

Unified Diff: chrome_frame/delete_chrome_history.cc

Issue 7717023: Rename REMOVE_COOKIES to REMOVE_SITE_DATA (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Dropping REMOVE_COOKIES in favor of REMOVE_SITE_DATA. Created 9 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Index: chrome_frame/delete_chrome_history.cc
diff --git a/chrome_frame/delete_chrome_history.cc b/chrome_frame/delete_chrome_history.cc
index 419cfc9b9df8cafd993fca135eae0fbc072b86d2..3c856ff6f8a8536832ac403034bd1937f94a9f4d 100644
--- a/chrome_frame/delete_chrome_history.cc
+++ b/chrome_frame/delete_chrome_history.cc
@@ -80,7 +80,7 @@ STDMETHODIMP DeleteChromeHistory::DeleteBrowsingHistory(DWORD flags) {
}
if (flags & DELETE_BROWSING_HISTORY_COOKIES)
- remove_mask_ |= BrowsingDataRemover::REMOVE_COOKIES;
+ remove_mask_ |= BrowsingDataRemover::REMOVE_SITE_DATA;
if (flags & DELETE_BROWSING_HISTORY_TIF)
remove_mask_ |= BrowsingDataRemover::REMOVE_CACHE;
if (flags & DELETE_BROWSING_HISTORY_FORMDATA)

Powered by Google App Engine