Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(114)

Side by Side Diff: content/network/network_service.h

Issue 2870203002: Implement chrome://view-http-cache with network service. (Closed)
Patch Set: fix memory leak Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « content/network/manifest.json ('k') | content/network/network_service.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2017 The Chromium Authors. All rights reserved. 1 // Copyright 2017 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CONTENT_NETWORK_NETWORK_SERVICE_H_ 5 #ifndef CONTENT_NETWORK_NETWORK_SERVICE_H_
6 #define CONTENT_NETWORK_NETWORK_SERVICE_H_ 6 #define CONTENT_NETWORK_NETWORK_SERVICE_H_
7 7
8 #include <memory> 8 #include <memory>
9 9
10 #include "base/macros.h" 10 #include "base/macros.h"
11 #include "content/common/network_service.mojom.h"
11 #include "content/common/url_loader_factory.mojom.h" 12 #include "content/common/url_loader_factory.mojom.h"
12 #include "content/network/network_context.h" 13 #include "content/network/network_context.h"
14 #include "mojo/public/cpp/bindings/binding_set.h"
13 #include "mojo/public/cpp/bindings/strong_binding_set.h" 15 #include "mojo/public/cpp/bindings/strong_binding_set.h"
14 #include "services/service_manager/public/cpp/binder_registry.h" 16 #include "services/service_manager/public/cpp/binder_registry.h"
15 #include "services/service_manager/public/cpp/service.h" 17 #include "services/service_manager/public/cpp/service.h"
16 18
17 namespace content { 19 namespace content {
18 20
19 class NetworkService : public service_manager::Service { 21 class NetworkService : public service_manager::Service,
22 public mojom::NetworkService {
20 public: 23 public:
21 explicit NetworkService( 24 explicit NetworkService(
22 std::unique_ptr<service_manager::BinderRegistry> registry); 25 std::unique_ptr<service_manager::BinderRegistry> registry);
23 ~NetworkService() override; 26 ~NetworkService() override;
24 27
25 private: 28 private:
26 // service_manager::Service implementation. 29 // service_manager::Service implementation.
27 void OnBindInterface(const service_manager::BindSourceInfo& source_info, 30 void OnBindInterface(const service_manager::BindSourceInfo& source_info,
28 const std::string& interface_name, 31 const std::string& interface_name,
29 mojo::ScopedMessagePipeHandle interface_pipe) override; 32 mojo::ScopedMessagePipeHandle interface_pipe) override;
30 33
31 void Create(const service_manager::BindSourceInfo& source_info, 34 void CreateURLLoaderFactory(
32 mojom::URLLoaderFactoryRequest request); 35 const service_manager::BindSourceInfo& source_info,
36 mojom::URLLoaderFactoryRequest request);
37 void CreateNetworkService(const service_manager::BindSourceInfo& source_info,
38 mojom::NetworkServiceRequest request);
39
40 // mojom::NetworkService implementation:
41 void HandleViewCacheRequest(const ResourceRequest& request,
42 mojom::URLLoaderClientPtr client) override;
33 43
34 std::unique_ptr<service_manager::BinderRegistry> registry_; 44 std::unique_ptr<service_manager::BinderRegistry> registry_;
35 45
36 NetworkContext context_; 46 NetworkContext context_;
37 47
38 // Put it below |context_| so that |context_| outlives all the 48 // Put it below |context_| so that |context_| outlives all the
39 // NetworkServiceURLLoaderFactoryImpl instances. 49 // NetworkServiceURLLoaderFactoryImpl instances.
40 mojo::StrongBindingSet<mojom::URLLoaderFactory> loader_factory_bindings_; 50 mojo::StrongBindingSet<mojom::URLLoaderFactory> loader_factory_bindings_;
41 51
52 mojo::BindingSet<mojom::NetworkService> network_service_bindings_;
53
42 DISALLOW_COPY_AND_ASSIGN(NetworkService); 54 DISALLOW_COPY_AND_ASSIGN(NetworkService);
43 }; 55 };
44 56
45 } // namespace content 57 } // namespace content
46 58
47 #endif // CONTENT_NETWORK_NETWORK_SERVICE_H_ 59 #endif // CONTENT_NETWORK_NETWORK_SERVICE_H_
OLDNEW
« no previous file with comments | « content/network/manifest.json ('k') | content/network/network_service.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698