2012-04-03 03:34:16 +02:00
|
|
|
// Copyright (c) 2011 The Chromium Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
|
|
// found in the LICENSE file.
|
|
|
|
|
|
|
|
#ifndef CEF_LIBCEF_BROWSER_BROWSER_CONTEXT_H_
|
|
|
|
#define CEF_LIBCEF_BROWSER_BROWSER_CONTEXT_H_
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "base/compiler_specific.h"
|
|
|
|
#include "base/file_path.h"
|
|
|
|
#include "base/memory/ref_counted.h"
|
|
|
|
#include "base/memory/scoped_ptr.h"
|
|
|
|
#include "content/public/browser/browser_context.h"
|
2013-02-23 01:43:28 +01:00
|
|
|
#include "net/url_request/url_request_job_factory.h"
|
2012-04-03 03:34:16 +02:00
|
|
|
|
|
|
|
namespace content {
|
|
|
|
class DownloadManagerDelegate;
|
|
|
|
class SpeechRecognitionPreferences;
|
|
|
|
}
|
|
|
|
|
|
|
|
class CefDownloadManagerDelegate;
|
2013-02-23 01:43:28 +01:00
|
|
|
class CefURLRequestContextGetter;
|
2012-04-03 03:34:16 +02:00
|
|
|
|
|
|
|
class CefBrowserContext : public content::BrowserContext {
|
|
|
|
public:
|
2012-04-04 20:18:09 +02:00
|
|
|
CefBrowserContext();
|
2012-04-03 03:34:16 +02:00
|
|
|
virtual ~CefBrowserContext();
|
|
|
|
|
|
|
|
// BrowserContext methods.
|
2013-02-23 01:43:28 +01:00
|
|
|
virtual base::FilePath GetPath() OVERRIDE;
|
2012-04-03 03:34:16 +02:00
|
|
|
virtual bool IsOffTheRecord() const OVERRIDE;
|
2012-06-22 00:50:34 +02:00
|
|
|
virtual content::DownloadManagerDelegate* GetDownloadManagerDelegate() OVERRIDE;
|
2012-04-03 03:34:16 +02:00
|
|
|
virtual net::URLRequestContextGetter* GetRequestContext() OVERRIDE;
|
|
|
|
virtual net::URLRequestContextGetter* GetRequestContextForRenderProcess(
|
|
|
|
int renderer_child_id) OVERRIDE;
|
2012-08-29 00:26:35 +02:00
|
|
|
virtual net::URLRequestContextGetter* GetMediaRequestContext() OVERRIDE;
|
|
|
|
virtual net::URLRequestContextGetter* GetMediaRequestContextForRenderProcess(
|
|
|
|
int renderer_child_id) OVERRIDE;
|
2012-10-03 21:52:50 +02:00
|
|
|
virtual net::URLRequestContextGetter*
|
|
|
|
GetMediaRequestContextForStoragePartition(
|
2013-02-23 01:43:28 +01:00
|
|
|
const base::FilePath& partition_path,
|
2012-11-05 21:18:20 +01:00
|
|
|
bool in_memory) OVERRIDE;
|
2012-04-03 03:34:16 +02:00
|
|
|
virtual content::ResourceContext* GetResourceContext() OVERRIDE;
|
|
|
|
virtual content::GeolocationPermissionContext*
|
|
|
|
GetGeolocationPermissionContext() OVERRIDE;
|
|
|
|
virtual content::SpeechRecognitionPreferences*
|
|
|
|
GetSpeechRecognitionPreferences() OVERRIDE;
|
|
|
|
virtual quota::SpecialStoragePolicy* GetSpecialStoragePolicy() OVERRIDE;
|
|
|
|
|
2013-02-23 01:43:28 +01:00
|
|
|
net::URLRequestContextGetter* CreateRequestContext(
|
|
|
|
scoped_ptr<net::URLRequestJobFactory::ProtocolHandler>
|
|
|
|
blob_protocol_handler,
|
|
|
|
scoped_ptr<net::URLRequestJobFactory::ProtocolHandler>
|
|
|
|
file_system_protocol_handler,
|
|
|
|
scoped_ptr<net::URLRequestJobFactory::ProtocolHandler>
|
|
|
|
developer_protocol_handler,
|
|
|
|
scoped_ptr<net::URLRequestJobFactory::ProtocolHandler>
|
|
|
|
chrome_protocol_handler,
|
|
|
|
scoped_ptr<net::URLRequestJobFactory::ProtocolHandler>
|
|
|
|
chrome_devtools_protocol_handler);
|
|
|
|
net::URLRequestContextGetter* CreateRequestContextForStoragePartition(
|
|
|
|
const FilePath& partition_path,
|
|
|
|
bool in_memory,
|
|
|
|
scoped_ptr<net::URLRequestJobFactory::ProtocolHandler>
|
|
|
|
blob_protocol_handler,
|
|
|
|
scoped_ptr<net::URLRequestJobFactory::ProtocolHandler>
|
|
|
|
file_system_protocol_handler,
|
|
|
|
scoped_ptr<net::URLRequestJobFactory::ProtocolHandler>
|
|
|
|
developer_protocol_handler,
|
|
|
|
scoped_ptr<net::URLRequestJobFactory::ProtocolHandler>
|
|
|
|
chrome_protocol_handler,
|
|
|
|
scoped_ptr<net::URLRequestJobFactory::ProtocolHandler>
|
|
|
|
chrome_devtools_protocol_handler);
|
|
|
|
|
2012-11-21 01:40:15 +01:00
|
|
|
// To disable window rendering call this function with |override|=true
|
|
|
|
// just before calling WebContents::Create. This will cause
|
|
|
|
// CefContentBrowserClient::OverrideCreateWebContentsView to create
|
|
|
|
// a windowless WebContentsView object.
|
|
|
|
void set_use_osr_next_contents_view(bool override);
|
|
|
|
bool use_osr_next_contents_view() const;
|
|
|
|
|
2012-04-03 03:34:16 +02:00
|
|
|
private:
|
2013-02-23 01:43:28 +01:00
|
|
|
class CefResourceContext;
|
2012-04-03 03:34:16 +02:00
|
|
|
|
2012-06-28 19:21:18 +02:00
|
|
|
scoped_ptr<CefResourceContext> resource_context_;
|
2012-11-30 20:08:20 +01:00
|
|
|
scoped_ptr<CefDownloadManagerDelegate> download_manager_delegate_;
|
2013-02-23 01:43:28 +01:00
|
|
|
scoped_refptr<CefURLRequestContextGetter> url_request_getter_;
|
2012-04-03 03:34:16 +02:00
|
|
|
scoped_refptr<content::GeolocationPermissionContext>
|
|
|
|
geolocation_permission_context_;
|
|
|
|
scoped_refptr<content::SpeechRecognitionPreferences>
|
|
|
|
speech_recognition_preferences_;
|
|
|
|
|
2012-11-21 01:40:15 +01:00
|
|
|
bool use_osr_next_contents_view_;
|
|
|
|
|
2012-04-03 03:34:16 +02:00
|
|
|
DISALLOW_COPY_AND_ASSIGN(CefBrowserContext);
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // CEF_LIBCEF_BROWSER_BROWSER_CONTEXT_H_
|