diff --git a/src/core/browser_context_qt.cpp b/src/core/browser_context_qt.cpp
index af8655b839cfe5606e5de0a5324810107b70f1b7..e87dd611a727d56aab94a750c1727d6598d551c1 100644
--- a/src/core/browser_context_qt.cpp
+++ b/src/core/browser_context_qt.cpp
@@ -111,11 +111,6 @@ base::FilePath BrowserContextQt::GetPath() const
     return toFilePath(m_adapter->dataPath());
 }
 
-base::FilePath BrowserContextQt::GetCachePath() const
-{
-    return toFilePath(m_adapter->cachePath());
-}
-
 bool BrowserContextQt::IsOffTheRecord() const
 {
     return m_adapter->isOffTheRecord();
diff --git a/src/core/browser_context_qt.h b/src/core/browser_context_qt.h
index 58bc75d5b8be1c2cc9ab5b83440199eb07daa9cb..7fef34df29710c1286b4bdb1cca082ce13cb577b 100644
--- a/src/core/browser_context_qt.h
+++ b/src/core/browser_context_qt.h
@@ -69,7 +69,6 @@ public:
 
     // BrowserContext implementation:
     base::FilePath GetPath() const override;
-    base::FilePath GetCachePath() const;
     bool IsOffTheRecord() const override;
 
     net::URLRequestContextGetter *CreateMediaRequestContext() override;