Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(251)

Unified Diff: content/browser/content_browser_client.h

Issue 7322008: Enable clear cache/cookies support in developer tools (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Patch with fixes Created 9 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: content/browser/content_browser_client.h
diff --git a/content/browser/content_browser_client.h b/content/browser/content_browser_client.h
index 84ddae1a056a12df1c630a1a6d4d67e281acbfab..8d0d507294b14fa002c770dda40b0d27324ca71f 100644
--- a/content/browser/content_browser_client.h
+++ b/content/browser/content_browser_client.h
@@ -238,6 +238,12 @@ class ContentBrowserClient {
crypto::CryptoModuleBlockingPasswordDelegate* GetCryptoPasswordDelegate(
const GURL& url) = 0;
#endif
+
+ // Clears browser cache.
+ virtual void ClearBrowserCache(RenderViewHost*) = 0;
jam 2011/07/12 01:13:00 nit: chrome style is to have parameter names
+
+ // Clears browser cookies.
+ virtual void ClearBrowserCookies(RenderViewHost*) = 0;
};
} // namespace content

Powered by Google App Engine
This is Rietveld 408576698