| OLD | NEW |
| 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 "base/memory/scoped_ptr.h" | 5 #include "base/memory/scoped_ptr.h" |
| 6 #include "dbus/bus.h" | 6 #include "dbus/bus.h" |
| 7 #include "dbus/exported_object.h" | 7 #include "dbus/exported_object.h" |
| 8 #include "dbus/message.h" | 8 #include "dbus/message.h" |
| 9 #include "dbus/object_path.h" | 9 #include "dbus/object_path.h" |
| 10 #include "mojo/common/channel_init.h" | 10 #include "mojo/common/channel_init.h" |
| 11 #include "mojo/public/cpp/bindings/interface.h" | 11 #include "mojo/public/cpp/bindings/interface.h" |
| 12 #include "mojo/public/cpp/bindings/remote_ptr.h" | |
| 13 #include "mojo/public/cpp/shell/application.h" | 12 #include "mojo/public/cpp/shell/application.h" |
| 14 #include "mojo/public/interfaces/shell/shell.mojom.h" | 13 #include "mojo/public/interfaces/shell/shell.mojom.h" |
| 15 #include "mojo/shell/external_service.mojom.h" | 14 #include "mojo/shell/external_service.mojom.h" |
| 16 | 15 |
| 17 namespace mojo { | 16 namespace mojo { |
| 18 const char kMojoDBusImplPath[] = "/org/chromium/MojoImpl"; | 17 const char kMojoDBusImplPath[] = "/org/chromium/MojoImpl"; |
| 19 const char kMojoDBusInterface[] = "org.chromium.Mojo"; | 18 const char kMojoDBusInterface[] = "org.chromium.Mojo"; |
| 20 const char kMojoDBusConnectMethod[] = "ConnectChannel"; | 19 const char kMojoDBusConnectMethod[] = "ConnectChannel"; |
| 21 | 20 |
| 22 class DBusExternalServiceBase : public mojo::ErrorHandler { | 21 class DBusExternalServiceBase : public mojo::ErrorHandler { |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 76 mojo::ShellHandle(client_handle.release().value())); | 75 mojo::ShellHandle(client_handle.release().value())); |
| 77 app_.reset(new mojo::Application(shell_handle.Pass())); | 76 app_.reset(new mojo::Application(shell_handle.Pass())); |
| 78 app_->AddServiceConnector(new mojo::ServiceConnector<ServiceImpl>()); | 77 app_->AddServiceConnector(new mojo::ServiceConnector<ServiceImpl>()); |
| 79 } | 78 } |
| 80 | 79 |
| 81 mojo::RemotePtr<mojo::ExternalServiceHost> external_service_host_; | 80 mojo::RemotePtr<mojo::ExternalServiceHost> external_service_host_; |
| 82 scoped_ptr<mojo::Application> app_; | 81 scoped_ptr<mojo::Application> app_; |
| 83 }; | 82 }; |
| 84 | 83 |
| 85 } // namespace mojo | 84 } // namespace mojo |
| OLD | NEW |