зеркало из https://github.com/electron/electron.git
57 строки
1.6 KiB
C++
57 строки
1.6 KiB
C++
// Copyright (c) 2019 GitHub, Inc.
|
|
// Use of this source code is governed by the MIT license that can be
|
|
// found in the LICENSE file.
|
|
|
|
#ifndef ELECTRON_SHELL_BROWSER_NET_NETWORK_CONTEXT_SERVICE_FACTORY_H_
|
|
#define ELECTRON_SHELL_BROWSER_NET_NETWORK_CONTEXT_SERVICE_FACTORY_H_
|
|
|
|
#include <memory>
|
|
|
|
#include "components/keyed_service/content/browser_context_keyed_service_factory.h"
|
|
|
|
class KeyedService;
|
|
|
|
namespace content {
|
|
class BrowserContext;
|
|
}
|
|
|
|
namespace base {
|
|
template <typename T>
|
|
class NoDestructor;
|
|
}
|
|
|
|
namespace electron {
|
|
|
|
class NetworkContextService;
|
|
|
|
class NetworkContextServiceFactory : public BrowserContextKeyedServiceFactory {
|
|
public:
|
|
// Returns the NetworkContextService that supports NetworkContexts for
|
|
// |browser_context|.
|
|
static NetworkContextService* GetForContext(
|
|
content::BrowserContext* browser_context);
|
|
|
|
// Returns the NetworkContextServiceFactory singleton.
|
|
static NetworkContextServiceFactory* GetInstance();
|
|
|
|
NetworkContextServiceFactory(const NetworkContextServiceFactory&) = delete;
|
|
NetworkContextServiceFactory& operator=(const NetworkContextServiceFactory&) =
|
|
delete;
|
|
|
|
private:
|
|
friend base::NoDestructor<NetworkContextServiceFactory>;
|
|
|
|
NetworkContextServiceFactory();
|
|
~NetworkContextServiceFactory() override;
|
|
|
|
// BrowserContextKeyedServiceFactory implementation:
|
|
std::unique_ptr<KeyedService> BuildServiceInstanceForBrowserContext(
|
|
content::BrowserContext* context) const override;
|
|
content::BrowserContext* GetBrowserContextToUse(
|
|
content::BrowserContext* context) const override;
|
|
};
|
|
|
|
} // namespace electron
|
|
|
|
#endif // ELECTRON_SHELL_BROWSER_NET_NETWORK_CONTEXT_SERVICE_FACTORY_H_
|