| OLD | NEW |
| (Empty) |
| 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 | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #include "base/memory/scoped_ptr.h" | |
| 6 #include "mojo/application/application_runner_chromium.h" | |
| 7 #include "mojo/common/tracing_impl.h" | |
| 8 #include "mojo/public/c/system/main.h" | |
| 9 #include "mojo/public/cpp/application/application_delegate.h" | |
| 10 #include "mojo/public/cpp/application/service_provider_impl.h" | |
| 11 #include "mojo/services/public/cpp/view_manager/view_manager.h" | |
| 12 #include "mojo/services/public/cpp/view_manager/view_manager_delegate.h" | |
| 13 #include "mojo/services/window_manager/window_manager_app.h" | |
| 14 #include "mojo/services/window_manager/window_manager_delegate.h" | |
| 15 | |
| 16 // ApplicationDelegate implementation file for WindowManager users (e.g. | |
| 17 // core window manager tests) that do not want to provide their own | |
| 18 // ApplicationDelegate::Create(). | |
| 19 | |
| 20 namespace mojo { | |
| 21 | |
| 22 class DefaultWindowManager : public ApplicationDelegate, | |
| 23 public ViewManagerDelegate, | |
| 24 public WindowManagerDelegate { | |
| 25 public: | |
| 26 DefaultWindowManager() | |
| 27 : window_manager_app_(new WindowManagerApp(this, this)), | |
| 28 view_manager_(NULL), | |
| 29 root_(NULL) {} | |
| 30 ~DefaultWindowManager() override {} | |
| 31 | |
| 32 private: | |
| 33 // Overridden from ApplicationDelegate: | |
| 34 void Initialize(ApplicationImpl* impl) override { | |
| 35 window_manager_app_->Initialize(impl); | |
| 36 TracingImpl::Create(impl); | |
| 37 } | |
| 38 bool ConfigureIncomingConnection(ApplicationConnection* connection) override { | |
| 39 window_manager_app_->ConfigureIncomingConnection(connection); | |
| 40 return true; | |
| 41 } | |
| 42 | |
| 43 // Overridden from ViewManagerDelegate: | |
| 44 void OnEmbed(ViewManager* view_manager, | |
| 45 View* root, | |
| 46 ServiceProviderImpl* exported_services, | |
| 47 scoped_ptr<ServiceProvider> imported_services) override { | |
| 48 view_manager_ = view_manager; | |
| 49 root_ = root; | |
| 50 } | |
| 51 void OnViewManagerDisconnected(ViewManager* view_manager) override {} | |
| 52 | |
| 53 // Overridden from WindowManagerDelegate: | |
| 54 void Embed(const String& url, | |
| 55 InterfaceRequest<ServiceProvider> service_provider) override { | |
| 56 View* view = View::Create(view_manager_); | |
| 57 root_->AddChild(view); | |
| 58 view->SetVisible(true); | |
| 59 view->Embed(url, scoped_ptr<mojo::ServiceProviderImpl>( | |
| 60 new mojo::ServiceProviderImpl).Pass()); | |
| 61 } | |
| 62 | |
| 63 scoped_ptr<WindowManagerApp> window_manager_app_; | |
| 64 | |
| 65 ViewManager* view_manager_; | |
| 66 View* root_; | |
| 67 | |
| 68 MOJO_DISALLOW_COPY_AND_ASSIGN(DefaultWindowManager); | |
| 69 }; | |
| 70 | |
| 71 } // namespace mojo | |
| 72 | |
| 73 MojoResult MojoMain(MojoHandle shell_handle) { | |
| 74 mojo::ApplicationRunnerChromium runner(new mojo::DefaultWindowManager); | |
| 75 return runner.Run(shell_handle); | |
| 76 } | |
| OLD | NEW |