From 20ffcf870ec0963b97d9d44c12b4fd2aa4a11dc9 Mon Sep 17 00:00:00 2001
From: Michal Klocek <michal.klocek@qt.io>
Date: Fri, 26 Jan 2018 19:01:39 +0100
Subject: [PATCH] Remove unused GetCachePath()
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

Change-Id: I9560c6a4618eec7caebbbd147cd170bea74a01aa
Reviewed-by: Michael Brüning <michael.bruning@qt.io>
---
 src/core/browser_context_qt.cpp | 5 -----
 src/core/browser_context_qt.h   | 1 -
 2 files changed, 6 deletions(-)

diff --git a/src/core/browser_context_qt.cpp b/src/core/browser_context_qt.cpp
index af8655b83..e87dd611a 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 58bc75d5b..7fef34df2 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;
-- 
GitLab