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

Side by Side Diff: services/sky/content_handler_impl.cc

Issue 1235093002: Move sky_viewer into services/sky (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: again Created 5 years, 5 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/sky/content_handler_impl.h ('k') | services/sky/converters/basic_types.h » ('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 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 "sky/viewer/content_handler_impl.h" 5 #include "services/sky/content_handler_impl.h"
6 6
7 #include "base/bind.h" 7 #include "base/bind.h"
8 #include "mojo/public/cpp/application/connect.h" 8 #include "mojo/public/cpp/application/connect.h"
9 #include "mojo/public/cpp/bindings/strong_binding.h" 9 #include "mojo/public/cpp/bindings/strong_binding.h"
10 #include "mojo/public/cpp/utility/run_loop.h" 10 #include "mojo/public/cpp/utility/run_loop.h"
11 #include "mojo/services/network/public/interfaces/network_service.mojom.h" 11 #include "mojo/services/network/public/interfaces/network_service.mojom.h"
12 #include "sky/viewer/document_view.h" 12 #include "services/sky/document_view.h"
13 13
14 namespace sky { 14 namespace sky {
15 15
16 class SkyApplication : public mojo::Application { 16 class SkyApplication : public mojo::Application {
17 public: 17 public:
18 SkyApplication(mojo::InterfaceRequest<mojo::Application> application, 18 SkyApplication(mojo::InterfaceRequest<mojo::Application> application,
19 mojo::URLResponsePtr response) 19 mojo::URLResponsePtr response)
20 : binding_(this, application.Pass()), 20 : binding_(this, application.Pass()),
21 initial_response_(response.Pass()) {} 21 initial_response_(response.Pass()) {}
22 22
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
84 ContentHandlerImpl::~ContentHandlerImpl() { 84 ContentHandlerImpl::~ContentHandlerImpl() {
85 } 85 }
86 86
87 void ContentHandlerImpl::StartApplication( 87 void ContentHandlerImpl::StartApplication(
88 mojo::InterfaceRequest<mojo::Application> application, 88 mojo::InterfaceRequest<mojo::Application> application,
89 mojo::URLResponsePtr response) { 89 mojo::URLResponsePtr response) {
90 new SkyApplication(application.Pass(), response.Pass()); 90 new SkyApplication(application.Pass(), response.Pass());
91 } 91 }
92 92
93 } // namespace sky 93 } // namespace sky
OLDNEW
« no previous file with comments | « services/sky/content_handler_impl.h ('k') | services/sky/converters/basic_types.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698