electron/brightray/browser/net/devtools_network_controller.h

45 lines
1.3 KiB
C
Raw Normal View History

2015-09-26 23:49:27 +05:30
// 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-CHROMIUM file.
#ifndef BRIGHTRAY_BROWSER_NET_DEVTOOLS_NETWORK_CONTROLLER_H_
#define BRIGHTRAY_BROWSER_NET_DEVTOOLS_NETWORK_CONTROLLER_H_
2015-09-26 23:49:27 +05:30
2017-04-04 13:26:50 +09:00
#include <memory>
#include <string>
#include <unordered_map>
2017-04-04 13:26:50 +09:00
2015-09-26 23:49:27 +05:30
#include "base/macros.h"
2017-04-04 13:26:50 +09:00
#include "base/threading/thread_checker.h"
2015-09-26 23:49:27 +05:30
namespace brightray {
class DevToolsNetworkConditions;
class DevToolsNetworkInterceptor;
class DevToolsNetworkTransaction;
class DevToolsNetworkController {
public:
DevToolsNetworkController();
virtual ~DevToolsNetworkController();
void SetNetworkState(const std::string& client_id,
std::unique_ptr<DevToolsNetworkConditions> conditions);
2017-04-04 13:26:50 +09:00
DevToolsNetworkInterceptor* GetInterceptor(const std::string& client_id);
2015-09-26 23:49:27 +05:30
private:
using InterceptorMap =
2017-04-04 13:26:50 +09:00
std::unordered_map<std::string,
std::unique_ptr<DevToolsNetworkInterceptor>>;
std::unique_ptr<DevToolsNetworkInterceptor> appcache_interceptor_;
2015-09-26 23:49:27 +05:30
InterceptorMap interceptors_;
DISALLOW_COPY_AND_ASSIGN(DevToolsNetworkController);
};
} // namespace brightray
#endif // BRIGHTRAY_BROWSER_NET_DEVTOOLS_NETWORK_CONTROLLER_H_