2015-02-14 00:17:08 +01:00
|
|
|
// Copyright (c) 2015 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_RESOURCE_CONTEXT_H_
|
|
|
|
#define CEF_LIBCEF_BROWSER_RESOURCE_CONTEXT_H_
|
|
|
|
#pragma once
|
|
|
|
|
2015-09-25 13:59:30 +02:00
|
|
|
#include "include/cef_request_context_handler.h"
|
|
|
|
|
2016-10-17 20:14:44 +02:00
|
|
|
#include "base/files/file_path.h"
|
2015-02-14 00:17:08 +01:00
|
|
|
#include "content/public/browser/resource_context.h"
|
2015-07-16 23:40:01 +02:00
|
|
|
#include "extensions/browser/info_map.h"
|
2016-07-06 21:34:09 +02:00
|
|
|
#include "net/ssl/client_cert_store.h"
|
2015-02-14 00:17:08 +01:00
|
|
|
|
|
|
|
class CefURLRequestContextGetter;
|
|
|
|
|
|
|
|
// Acts as a bridge for resource loading. Life span is controlled by
|
|
|
|
// CefBrowserContext. Created on the UI thread but accessed and destroyed on the
|
|
|
|
// IO thread. URLRequest objects are associated with the ResourceContext via
|
|
|
|
// ResourceDispatcherHost. When the ResourceContext is destroyed all outstanding
|
|
|
|
// URLRequest objects will be deleted via the ResourceLoader that owns them and
|
|
|
|
// removed from the associated URLRequestContext. Other URLRequest objects may
|
|
|
|
// be created via URLFetcher that are not associated with a RequestContext.
|
|
|
|
// See browser_context.h for an object relationship diagram.
|
|
|
|
class CefResourceContext : public content::ResourceContext {
|
|
|
|
public:
|
2015-07-16 23:40:01 +02:00
|
|
|
CefResourceContext(bool is_off_the_record,
|
2015-09-25 13:59:30 +02:00
|
|
|
extensions::InfoMap* extension_info_map,
|
|
|
|
CefRefPtr<CefRequestContextHandler> handler);
|
2015-02-14 00:17:08 +01:00
|
|
|
~CefResourceContext() override;
|
|
|
|
|
2016-11-07 20:14:09 +01:00
|
|
|
// SupportsUserData implementation.
|
|
|
|
Data* GetUserData(const void* key) const override;
|
|
|
|
void SetUserData(const void* key, Data* data) override;
|
|
|
|
void RemoveUserData(const void* key) override;
|
|
|
|
|
2015-02-14 00:17:08 +01:00
|
|
|
// ResourceContext implementation.
|
|
|
|
net::HostResolver* GetHostResolver() override;
|
|
|
|
net::URLRequestContext* GetRequestContext() override;
|
2016-07-06 21:34:09 +02:00
|
|
|
|
|
|
|
std::unique_ptr<net::ClientCertStore> CreateClientCertStore();
|
2015-02-14 00:17:08 +01:00
|
|
|
|
2016-08-24 11:28:52 +02:00
|
|
|
void set_url_request_context_getter(CefURLRequestContextGetter* getter);
|
2016-11-07 20:14:09 +01:00
|
|
|
void set_parent(CefResourceContext* parent);
|
2015-02-14 00:17:08 +01:00
|
|
|
|
2016-10-17 20:14:44 +02:00
|
|
|
// Remember the plugin load decision for plugin status requests that arrive
|
|
|
|
// via CefPluginServiceFilter::IsPluginAvailable.
|
|
|
|
// TODO(cef): Per-frame decisions are not currently supported because
|
|
|
|
// Chromium does not pipe the frame id through to RenderFrameMessageFilter::
|
|
|
|
// GetPluginsCallback. Fix this once https://crbug.com/626728#c15 is resolved.
|
|
|
|
void AddPluginLoadDecision(int render_process_id,
|
|
|
|
const base::FilePath& plugin_path,
|
|
|
|
bool allow_load);
|
|
|
|
bool HasPluginLoadDecision(int render_process_id,
|
|
|
|
const base::FilePath& plugin_path,
|
|
|
|
bool* allow_load) const;
|
|
|
|
|
|
|
|
// Clear the plugin load decisions associated with |render_process_id|, or all
|
|
|
|
// plugin load decisions if |render_process_id| is -1.
|
|
|
|
void ClearPluginLoadDecision(int render_process_id);
|
|
|
|
|
2015-07-16 23:40:01 +02:00
|
|
|
// State transferred from the BrowserContext for use on the IO thread.
|
|
|
|
bool IsOffTheRecord() const { return is_off_the_record_; }
|
|
|
|
const extensions::InfoMap* GetExtensionInfoMap() const {
|
|
|
|
return extension_info_map_.get();
|
|
|
|
}
|
2015-09-25 13:59:30 +02:00
|
|
|
CefRefPtr<CefRequestContextHandler> GetHandler() const { return handler_; }
|
2015-07-16 23:40:01 +02:00
|
|
|
|
2015-02-14 00:17:08 +01:00
|
|
|
private:
|
|
|
|
scoped_refptr<CefURLRequestContextGetter> getter_;
|
|
|
|
|
2016-11-07 20:14:09 +01:00
|
|
|
// Non-NULL when this object is owned by a CefBrowserContextProxy. |parent_|
|
|
|
|
// is guaranteed to outlive this object because CefBrowserContextProxy has a
|
|
|
|
// refptr to the CefBrowserContextImpl that owns |parent_|.
|
|
|
|
CefResourceContext* parent_;
|
|
|
|
|
2016-10-17 20:14:44 +02:00
|
|
|
// Only accessed on the IO thread.
|
2015-07-16 23:40:01 +02:00
|
|
|
bool is_off_the_record_;
|
|
|
|
scoped_refptr<extensions::InfoMap> extension_info_map_;
|
2015-09-25 13:59:30 +02:00
|
|
|
CefRefPtr<CefRequestContextHandler> handler_;
|
2015-07-16 23:40:01 +02:00
|
|
|
|
2016-10-17 20:14:44 +02:00
|
|
|
// Map (render_process_id, plugin_path) to plugin load decision.
|
|
|
|
typedef std::map<std::pair<int, base::FilePath>, bool>
|
|
|
|
PluginLoadDecisionMap;
|
|
|
|
PluginLoadDecisionMap plugin_load_decision_map_;
|
|
|
|
|
2015-02-14 00:17:08 +01:00
|
|
|
DISALLOW_COPY_AND_ASSIGN(CefResourceContext);
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // CEF_LIBCEF_BROWSER_RESOURCE_CONTEXT_H_
|