OLD | NEW |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 #include "base/memory/scoped_ptr.h" | 5 #include "base/memory/scoped_ptr.h" |
6 #include "base/memory/scoped_vector.h" | 6 #include "base/memory/scoped_vector.h" |
7 #include "base/memory/weak_ptr.h" | 7 #include "base/memory/weak_ptr.h" |
8 #include "mojo/common/weak_binding_set.h" | 8 #include "mojo/common/weak_binding_set.h" |
9 #include "mojo/public/cpp/bindings/interface_request.h" | 9 #include "mojo/public/cpp/bindings/interface_request.h" |
10 #include "mojo/public/cpp/bindings/strong_binding.h" | 10 #include "mojo/public/cpp/bindings/strong_binding.h" |
| 11 #include "mojo/services/http_server/public/interfaces/http_request.mojom.h" |
| 12 #include "mojo/services/http_server/public/interfaces/http_response.mojom.h" |
| 13 #include "mojo/services/http_server/public/interfaces/http_server.mojom.h" |
11 #include "mojo/services/network/public/interfaces/net_address.mojom.h" | 14 #include "mojo/services/network/public/interfaces/net_address.mojom.h" |
12 #include "mojo/services/network/public/interfaces/network_service.mojom.h" | 15 #include "mojo/services/network/public/interfaces/network_service.mojom.h" |
13 #include "services/http_server/public/http_request.mojom.h" | |
14 #include "services/http_server/public/http_response.mojom.h" | |
15 #include "services/http_server/public/http_server.mojom.h" | |
16 #include "third_party/re2/re2/re2.h" | 16 #include "third_party/re2/re2/re2.h" |
17 | 17 |
18 namespace mojo { | 18 namespace mojo { |
19 class ApplicationImpl; | 19 class ApplicationImpl; |
20 } // namespace mojo | 20 } // namespace mojo |
21 | 21 |
22 namespace http_server { | 22 namespace http_server { |
23 | 23 |
24 class Connection; | 24 class Connection; |
25 class HttpServerFactoryImpl; | 25 class HttpServerFactoryImpl; |
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
86 mojo::ScopedDataPipeConsumerHandle pending_receive_handle_; | 86 mojo::ScopedDataPipeConsumerHandle pending_receive_handle_; |
87 mojo::TCPConnectedSocketPtr pending_connected_socket_; | 87 mojo::TCPConnectedSocketPtr pending_connected_socket_; |
88 | 88 |
89 ScopedVector<Handler> handlers_; | 89 ScopedVector<Handler> handlers_; |
90 | 90 |
91 base::WeakPtrFactory<HttpServerImpl> weak_ptr_factory_; | 91 base::WeakPtrFactory<HttpServerImpl> weak_ptr_factory_; |
92 DISALLOW_COPY_AND_ASSIGN(HttpServerImpl); | 92 DISALLOW_COPY_AND_ASSIGN(HttpServerImpl); |
93 }; | 93 }; |
94 | 94 |
95 } // namespace http_server | 95 } // namespace http_server |
OLD | NEW |