summaryrefslogtreecommitdiffstats
path: root/src/core/content_browser_client_qt.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/content_browser_client_qt.h')
-rw-r--r--src/core/content_browser_client_qt.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/core/content_browser_client_qt.h b/src/core/content_browser_client_qt.h
index 86bd2977c..5ef2cddfb 100644
--- a/src/core/content_browser_client_qt.h
+++ b/src/core/content_browser_client_qt.h
@@ -150,6 +150,25 @@ public:
int render_frame_id,
const net::CookieOptions& options) override;
+ bool AllowAppCache(const GURL& manifest_url,
+ const GURL& first_party,
+ content::ResourceContext* context) override;
+
+ bool AllowServiceWorker(const GURL& scope,
+ const GURL& first_party,
+ content::ResourceContext* context,
+ const base::Callback<content::WebContents*(void)>& wc_getter) override;
+
+ void AllowWorkerFileSystem(const GURL &url,
+ content::ResourceContext *context,
+ const std::vector<std::pair<int, int> > &render_frames,
+ base::Callback<void(bool)> callback) override;
+
+ bool AllowWorkerIndexedDB(const GURL &url,
+ const base::string16 &name,
+ content::ResourceContext *context,
+ const std::vector<std::pair<int, int> > &render_frames) override;
+
#if defined(Q_OS_LINUX)
void GetAdditionalMappedFilesForChildProcess(const base::CommandLine& command_line, int child_process_id, content::PosixFileDescriptorInfo* mappings) override;
#endif