mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-06-05 21:39:12 +02:00
- Update to Chromium revision 59193.
- Use Mesa for off-screen rendering. - Add support for the FileSystem API and "blob" schema. - Set User-Agent product version to "Chrome/7.0.517.0" git-svn-id: https://chromiumembedded.googlecode.com/svn/trunk@102 5089003a-bbd8-11dd-ad1f-f1f9622dbc98
This commit is contained in:
@@ -10,6 +10,9 @@
|
||||
#include "net/url_request/url_request_context.h"
|
||||
|
||||
class FilePath;
|
||||
namespace webkit_blob {
|
||||
class BlobStorageController;
|
||||
}
|
||||
|
||||
// A basic URLRequestContext that only provides an in-memory cookie store.
|
||||
class BrowserRequestContext : public URLRequestContext {
|
||||
@@ -28,9 +31,15 @@ class BrowserRequestContext : public URLRequestContext {
|
||||
|
||||
void SetAcceptAllCookies(bool accept_all_cookies);
|
||||
|
||||
webkit_blob::BlobStorageController* blob_storage_controller() const {
|
||||
return blob_storage_controller_.get();
|
||||
}
|
||||
|
||||
private:
|
||||
void Init(const FilePath& cache_path, net::HttpCache::Mode cache_mode,
|
||||
bool no_proxy);
|
||||
|
||||
scoped_ptr<webkit_blob::BlobStorageController> blob_storage_controller_;
|
||||
};
|
||||
|
||||
#endif // _BROWSER_REQUEST_CONTEXT_H
|
||||
|
Reference in New Issue
Block a user