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

Side by Side Diff: services/http_server/http_server_app.cc

Issue 1975993002: Change InterfaceFactory<I>::Create() to take a ConnectionContext instead of an ApplicationConnectio… (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 4 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 | « services/gfx/compositor/compositor_app.cc ('k') | services/icu_data/icu_data_impl.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 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 <memory> 5 #include <memory>
6 6
7 #include "mojo/public/c/system/main.h" 7 #include "mojo/public/c/system/main.h"
8 #include "mojo/public/cpp/application/application_delegate.h" 8 #include "mojo/public/cpp/application/application_delegate.h"
9 #include "mojo/public/cpp/application/application_impl.h" 9 #include "mojo/public/cpp/application/application_impl.h"
10 #include "mojo/public/cpp/application/application_runner.h" 10 #include "mojo/public/cpp/application/application_runner.h"
(...skipping 14 matching lines...) Expand all
25 25
26 private: 26 private:
27 // ApplicationDelegate: 27 // ApplicationDelegate:
28 bool ConfigureIncomingConnection( 28 bool ConfigureIncomingConnection(
29 mojo::ApplicationConnection* connection) override { 29 mojo::ApplicationConnection* connection) override {
30 connection->AddService(this); 30 connection->AddService(this);
31 return true; 31 return true;
32 } 32 }
33 33
34 // InterfaceFactory<HttpServerFactory>: 34 // InterfaceFactory<HttpServerFactory>:
35 void Create(mojo::ApplicationConnection* connection, 35 void Create(const mojo::ConnectionContext& connection_context,
36 mojo::InterfaceRequest<HttpServerFactory> request) override { 36 mojo::InterfaceRequest<HttpServerFactory> request) override {
37 if (!http_server_factory_) { 37 if (!http_server_factory_) {
38 http_server_factory_.reset(new HttpServerFactoryImpl(app_)); 38 http_server_factory_.reset(new HttpServerFactoryImpl(app_));
39 } 39 }
40 40
41 http_server_factory_->AddBinding(request.Pass()); 41 http_server_factory_->AddBinding(request.Pass());
42 } 42 }
43 43
44 mojo::ApplicationImpl* app_; 44 mojo::ApplicationImpl* app_;
45 std::unique_ptr<HttpServerFactoryImpl> http_server_factory_; 45 std::unique_ptr<HttpServerFactoryImpl> http_server_factory_;
46 }; 46 };
47 47
48 } // namespace http_server 48 } // namespace http_server
49 49
50 MojoResult MojoMain(MojoHandle application_request) { 50 MojoResult MojoMain(MojoHandle application_request) {
51 mojo::ApplicationRunner runner(std::unique_ptr<http_server::HttpServerApp>( 51 mojo::ApplicationRunner runner(std::unique_ptr<http_server::HttpServerApp>(
52 new http_server::HttpServerApp())); 52 new http_server::HttpServerApp()));
53 return runner.Run(application_request); 53 return runner.Run(application_request);
54 } 54 }
OLDNEW
« no previous file with comments | « services/gfx/compositor/compositor_app.cc ('k') | services/icu_data/icu_data_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698