d663b4eaee
* chore: fix cpplint 'include_what_you_use' warnings Typically by including <memory>, <utility> etc. * chore: fix 'static/global string constant' warning Use C style strings instead of std::string. Style guide forbids non-trivial static / global variables. https://google.github.io/styleguide/cppguide.html#Static_and_Global_Variables /home/charles/electron/electron-gn/src/electron/script/cpplint.js * refactor: remove global string variables. Fix 'global string variables are not permitted' linter warnings by using the base::NoDestructor<> wrapper to make it explicit that these variables are never destroyed. The style guide's take on globals with nontrivial destructors: https://google.github.io/styleguide/cppguide.html#Static_and_Global_Variables * fix: initializer error introduced in last commit * fix: remove WIP file that was included by accident * fix: include order * fix: include order * fix: include order * fix: include order, again
44 lines
1.3 KiB
C++
44 lines
1.3 KiB
C++
// Copyright (c) 2017 GitHub, Inc.
|
|
// Use of this source code is governed by the MIT license that can be
|
|
// found in the LICENSE file.
|
|
|
|
#ifndef ATOM_BROWSER_LOADER_LAYERED_RESOURCE_HANDLER_H_
|
|
#define ATOM_BROWSER_LOADER_LAYERED_RESOURCE_HANDLER_H_
|
|
|
|
#include <memory>
|
|
|
|
#include "content/browser/loader/layered_resource_handler.h"
|
|
#include "services/network/public/cpp/resource_response.h"
|
|
|
|
namespace atom {
|
|
|
|
// Resource handler that notifies on various stages of a resource request.
|
|
class LayeredResourceHandler : public content::LayeredResourceHandler {
|
|
public:
|
|
class Delegate {
|
|
public:
|
|
Delegate() {}
|
|
virtual ~Delegate() {}
|
|
|
|
virtual void OnResponseStarted(network::ResourceResponse* response) = 0;
|
|
};
|
|
|
|
LayeredResourceHandler(net::URLRequest* request,
|
|
std::unique_ptr<content::ResourceHandler> next_handler,
|
|
Delegate* delegate);
|
|
~LayeredResourceHandler() override;
|
|
|
|
// content::LayeredResourceHandler:
|
|
void OnResponseStarted(
|
|
network::ResourceResponse* response,
|
|
std::unique_ptr<content::ResourceController> controller) override;
|
|
|
|
private:
|
|
Delegate* delegate_;
|
|
|
|
DISALLOW_COPY_AND_ASSIGN(LayeredResourceHandler);
|
|
};
|
|
|
|
} // namespace atom
|
|
|
|
#endif // ATOM_BROWSER_LOADER_LAYERED_RESOURCE_HANDLER_H_
|