diff options
author | vsevik@chromium.org <vsevik@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-07-13 11:52:23 +0000 |
---|---|---|
committer | vsevik@chromium.org <vsevik@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-07-13 11:52:23 +0000 |
commit | 3b8f7e34e97e9b7d7ddc2eb61e8a470311de1492 (patch) | |
tree | b7c42221f98a9cb150543d5c7b7f112fbc584c8a /content/browser/content_browser_client.h | |
parent | f2467b26b870c3489e41484fd4c22a08ba08f9fd (diff) | |
download | chromium_src-3b8f7e34e97e9b7d7ddc2eb61e8a470311de1492.zip chromium_src-3b8f7e34e97e9b7d7ddc2eb61e8a470311de1492.tar.gz chromium_src-3b8f7e34e97e9b7d7ddc2eb61e8a470311de1492.tar.bz2 |
Enable clear cache/cookies support in developer tools
BUG=71687
Review URL: http://codereview.chromium.org/7322008
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@92352 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/browser/content_browser_client.h')
-rw-r--r-- | content/browser/content_browser_client.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/content/browser/content_browser_client.h b/content/browser/content_browser_client.h index e9a00b7..79c88bc 100644 --- a/content/browser/content_browser_client.h +++ b/content/browser/content_browser_client.h @@ -255,6 +255,12 @@ class ContentBrowserClient { crypto::CryptoModuleBlockingPasswordDelegate* GetCryptoPasswordDelegate( const GURL& url) = 0; #endif + + // Clears browser cache. + virtual void ClearCache(RenderViewHost* rvh) = 0; + + // Clears browser cookies. + virtual void ClearCookies(RenderViewHost* rvh) = 0; }; } // namespace content |