mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
Previously this value was the temp directory that we used to store the FLX bundle. Now it's the URL given to us by MojoShell.
76 lines
2.8 KiB
C++
76 lines
2.8 KiB
C++
// Copyright 2016 The Chromium Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
#ifndef SKY_SHELL_PLATFORM_MOJO_APPLICATION_IMPL_H_
|
|
#define SKY_SHELL_PLATFORM_MOJO_APPLICATION_IMPL_H_
|
|
|
|
#include "mojo/public/cpp/bindings/strong_binding.h"
|
|
#include "mojo/public/interfaces/application/application.mojom.h"
|
|
#include "mojo/public/interfaces/application/shell.mojom.h"
|
|
#include "mojo/services/content_handler/interfaces/content_handler.mojom.h"
|
|
#include "sky/shell/platform/mojo/platform_view_mojo.h"
|
|
#include "sky/shell/shell_view.h"
|
|
|
|
#include "mojo/services/ui/views/interfaces/view_provider.mojom.h"
|
|
#include "mojo/common/binding_set.h"
|
|
|
|
namespace sky {
|
|
namespace shell {
|
|
|
|
class ApplicationImpl : public mojo::Application,
|
|
public mojo::ServiceProvider,
|
|
public mojo::Shell,
|
|
public mojo::ui::ViewProvider {
|
|
public:
|
|
ApplicationImpl(mojo::InterfaceRequest<mojo::Application> application,
|
|
mojo::URLResponsePtr response);
|
|
~ApplicationImpl() override;
|
|
|
|
private:
|
|
// mojo::Application
|
|
void Initialize(mojo::InterfaceHandle<mojo::Shell> shell,
|
|
mojo::Array<mojo::String> args,
|
|
const mojo::String& url) override;
|
|
void AcceptConnection(
|
|
const mojo::String& requestor_url,
|
|
mojo::InterfaceRequest<mojo::ServiceProvider> outgoing_services,
|
|
mojo::InterfaceHandle<mojo::ServiceProvider> incoming_services,
|
|
const mojo::String& resolved_url) override;
|
|
void RequestQuit() override;
|
|
|
|
// mojo::ServiceProvider
|
|
void ConnectToService(const mojo::String& service_name,
|
|
mojo::ScopedMessagePipeHandle client_handle) override;
|
|
|
|
// mojo::Shell
|
|
void ConnectToApplication(
|
|
const mojo::String& application_url,
|
|
mojo::InterfaceRequest<mojo::ServiceProvider> services,
|
|
mojo::InterfaceHandle<mojo::ServiceProvider> exposed_services) override;
|
|
void CreateApplicationConnector(
|
|
mojo::InterfaceRequest<mojo::ApplicationConnector> request) override;
|
|
|
|
// mojo::ui::ViewProvider
|
|
void CreateView(
|
|
mojo::InterfaceRequest<mojo::ui::ViewOwner> view_owner,
|
|
mojo::InterfaceRequest<mojo::ServiceProvider> incoming_services,
|
|
mojo::InterfaceHandle<mojo::ServiceProvider> outgoing_services) override;
|
|
|
|
void UnpackInitialResponse(mojo::Shell* shell);
|
|
|
|
mojo::StrongBinding<mojo::Application> binding_;
|
|
mojo::URLResponsePtr initial_response_;
|
|
mojo::BindingSet<mojo::ServiceProvider> service_provider_bindings_;
|
|
mojo::BindingSet<mojo::Shell> shell_bindings_;
|
|
mojo::BindingSet<mojo::ui::ViewProvider> view_provider_bindings_;
|
|
std::string url_;
|
|
mojo::ShellPtr shell_;
|
|
base::FilePath bundle_path_;
|
|
};
|
|
|
|
} // namespace shell
|
|
} // namespace sky
|
|
|
|
#endif // SKY_SHELL_PLATFORM_MOJO_APPLICATION_IMPL_H_
|