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

Side by Side Diff: services/http_server/http_server_impl.h

Issue 1398973004: Move //mojo/services/X/public/... to //mojo/services/X/... (part 2). (Closed) Base URL: https://github.com/domokit/mojo.git@no_public_1
Patch Set: add missing copyright notices Created 5 years, 2 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
OLDNEW
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/binding_set.h" 8 #include "mojo/common/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" 11 #include "mojo/services/http_server/interfaces/http_request.mojom.h"
12 #include "mojo/services/http_server/public/interfaces/http_response.mojom.h" 12 #include "mojo/services/http_server/interfaces/http_response.mojom.h"
13 #include "mojo/services/http_server/public/interfaces/http_server.mojom.h" 13 #include "mojo/services/http_server/interfaces/http_server.mojom.h"
14 #include "mojo/services/network/public/interfaces/net_address.mojom.h" 14 #include "mojo/services/network/public/interfaces/net_address.mojom.h"
15 #include "mojo/services/network/public/interfaces/network_service.mojom.h" 15 #include "mojo/services/network/public/interfaces/network_service.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
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
87 87
88 // TODO(vtl): Maybe this should be an std::set or unordered_set, which would 88 // TODO(vtl): Maybe this should be an std::set or unordered_set, which would
89 // simplify OnHandlerConnectionError(). 89 // simplify OnHandlerConnectionError().
90 ScopedVector<Handler> handlers_; 90 ScopedVector<Handler> handlers_;
91 91
92 base::WeakPtrFactory<HttpServerImpl> weak_ptr_factory_; 92 base::WeakPtrFactory<HttpServerImpl> weak_ptr_factory_;
93 DISALLOW_COPY_AND_ASSIGN(HttpServerImpl); 93 DISALLOW_COPY_AND_ASSIGN(HttpServerImpl);
94 }; 94 };
95 95
96 } // namespace http_server 96 } // namespace http_server
OLDNEW
« no previous file with comments | « services/http_server/http_server_factory_impl.cc ('k') | services/http_server/http_server_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698