diff options
Diffstat (limited to 'content/browser/mock_content_browser_client.h')
-rw-r--r-- | content/browser/mock_content_browser_client.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/content/browser/mock_content_browser_client.h b/content/browser/mock_content_browser_client.h index 47ccfe1..a407bb7 100644 --- a/content/browser/mock_content_browser_client.h +++ b/content/browser/mock_content_browser_client.h @@ -99,6 +99,9 @@ class MockContentBrowserClient : public ContentBrowserClient { const std::string& key, const std::string& value) OVERRIDE; virtual void ClearInspectorSettings(RenderViewHost* rvh) OVERRIDE; + virtual void BrowserURLHandlerCreated(BrowserURLHandler* handler) OVERRIDE; + virtual void ClearCache(RenderViewHost* rvh); + virtual void ClearCookies(RenderViewHost* rvh); #if defined(OS_POSIX) && !defined(OS_MACOSX) virtual int GetCrashSignalFD(const std::string& process_type) OVERRIDE; @@ -109,9 +112,6 @@ class MockContentBrowserClient : public ContentBrowserClient { crypto::CryptoModuleBlockingPasswordDelegate* GetCryptoPasswordDelegate( const GURL& url) OVERRIDE; #endif - - virtual void ClearCache(RenderViewHost* rvh); - virtual void ClearCookies(RenderViewHost* rvh); }; } // namespace content |