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

Side by Side Diff: services/http_server/http_server_factory_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 #ifndef SERVICES_HTTP_SERVER_HTTP_SERVER_FACTORY_IMPL_H_ 5 #ifndef SERVICES_HTTP_SERVER_HTTP_SERVER_FACTORY_IMPL_H_
6 #define SERVICES_HTTP_SERVER_HTTP_SERVER_FACTORY_IMPL_H_ 6 #define SERVICES_HTTP_SERVER_HTTP_SERVER_FACTORY_IMPL_H_
7 7
8 #include <algorithm> 8 #include <algorithm>
9 #include <map> 9 #include <map>
10 #include <set> 10 #include <set>
11 #include <vector> 11 #include <vector>
12 12
13 #include "mojo/common/binding_set.h" 13 #include "mojo/common/binding_set.h"
14 #include "mojo/public/cpp/bindings/interface_request.h" 14 #include "mojo/public/cpp/bindings/interface_request.h"
15 #include "mojo/services/http_server/public/interfaces/http_server_factory.mojom. h" 15 #include "mojo/services/http_server/interfaces/http_server_factory.mojom.h"
16 #include "mojo/services/network/public/interfaces/net_address.mojom.h" 16 #include "mojo/services/network/public/interfaces/net_address.mojom.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 HttpServerImpl; 24 class HttpServerImpl;
25 25
(...skipping 27 matching lines...) Expand all
53 // Servers that were requested with port = 0 (pick any) are not available to 53 // Servers that were requested with port = 0 (pick any) are not available to
54 // other clients. 54 // other clients.
55 std::set<HttpServerImpl*> port_any_servers_; 55 std::set<HttpServerImpl*> port_any_servers_;
56 56
57 mojo::ApplicationImpl* app_; 57 mojo::ApplicationImpl* app_;
58 }; 58 };
59 59
60 } // namespace http_server 60 } // namespace http_server
61 61
62 #endif // SERVICES_HTTP_SERVER_HTTP_SERVER_FACTORY_IMPL_H_ 62 #endif // SERVICES_HTTP_SERVER_HTTP_SERVER_FACTORY_IMPL_H_
OLDNEW
« no previous file with comments | « services/http_server/http_server_apptest.cc ('k') | services/http_server/http_server_factory_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698