Separate the archive cache out to ArchiveFactory.

This commit is contained in:
Cheng Zhao 2014-09-23 22:31:45 +08:00
parent b6583635d4
commit 7081f7799b
5 changed files with 69 additions and 18 deletions

View file

@ -5,9 +5,7 @@
#ifndef ATOM_BROWSER_NET_ASAR_ASAR_PROTOCOL_HANDLER_H_
#define ATOM_BROWSER_NET_ASAR_ASAR_PROTOCOL_HANDLER_H_
#include "base/containers/hash_tables.h"
#include "base/files/file_path.h"
#include "base/memory/ref_counted.h"
#include "atom/common/asar/archive_factory.h"
#include "net/url_request/url_request_job_factory.h"
namespace base {
@ -16,8 +14,6 @@ class TaskRunner;
namespace asar {
class Archive;
class AsarProtocolHandler : public net::URLRequestJobFactory::ProtocolHandler {
public:
explicit AsarProtocolHandler(
@ -33,8 +29,7 @@ class AsarProtocolHandler : public net::URLRequestJobFactory::ProtocolHandler {
private:
const scoped_refptr<base::TaskRunner> file_task_runner_;
mutable base::hash_map<base::FilePath, // NOLINT
scoped_refptr<Archive> > archives_;
mutable ArchiveFactory archive_factory_;
DISALLOW_COPY_AND_ASSIGN(AsarProtocolHandler);
};