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

Side by Side Diff: mojo/services/http_server/interfaces/http_server_factory.mojom

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 [DartPackage="mojo_services"] 5 [DartPackage="mojo_services"]
6 module http_server; 6 module http_server;
7 7
8 import "http_server/public/interfaces/http_server.mojom"; 8 import "http_server/interfaces/http_server.mojom";
9 import "network/public/interfaces/net_address.mojom"; 9 import "network/public/interfaces/net_address.mojom";
10 10
11 interface HttpServerFactory { 11 interface HttpServerFactory {
12 // Creates an http server running on the specified local network address. If 12 // Creates an http server running on the specified local network address. If
13 // |local_address| is null, it will take the default value of 0.0.0.0 at a 13 // |local_address| is null, it will take the default value of 0.0.0.0 at a
14 // system-allocated port. 14 // system-allocated port.
15 // 15 //
16 // Note that the port value of 0 means that the operating system will pick 16 // Note that the port value of 0 means that the operating system will pick
17 // one of available ports. You can use HttpServer::GetPort() to retrieve the 17 // one of available ports. You can use HttpServer::GetPort() to retrieve the
18 // allocated port. 18 // allocated port.
19 // 19 //
20 // Only one backing server will be created for each local network address. It 20 // Only one backing server will be created for each local network address. It
21 // will be shared among clients, if more than one client requests a server 21 // will be shared among clients, if more than one client requests a server
22 // running on a particular network address. 22 // running on a particular network address.
23 // 23 //
24 // TODO(ppi): would it be better to create a server only for the first caller 24 // TODO(ppi): would it be better to create a server only for the first caller
25 // and require the access to it to be explicitly shared by the party that 25 // and require the access to it to be explicitly shared by the party that
26 // requests it first? 26 // requests it first?
27 CreateHttpServer(HttpServer& server_request, mojo.NetAddress? local_address); 27 CreateHttpServer(HttpServer& server_request, mojo.NetAddress? local_address);
28 }; 28 };
OLDNEW
« no previous file with comments | « mojo/services/http_server/interfaces/http_server.mojom ('k') | mojo/services/http_server/public/cpp/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698