summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichal Klocek <michal.klocek@qt.io>2018-01-26 19:01:39 +0100
committerMichal Klocek <michal.klocek@qt.io>2018-02-12 14:34:58 +0000
commit20ffcf870ec0963b97d9d44c12b4fd2aa4a11dc9 (patch)
tree3b8c8d9fc4f756866449cb2993b00b0e30912794
parentf1995182bc35d9c49b0a5a1c0f6dfa5e9aec96e3 (diff)
Remove unused GetCachePath()
Change-Id: I9560c6a4618eec7caebbbd147cd170bea74a01aa Reviewed-by: Michael BrĂ¼ning <michael.bruning@qt.io>
-rw-r--r--src/core/browser_context_qt.cpp5
-rw-r--r--src/core/browser_context_qt.h1
2 files changed, 0 insertions, 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;