mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
52 lines
1.4 KiB
C++
52 lines
1.4 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 FLUTTER_CONTENT_HANDLER_APP_H_
|
|
#define FLUTTER_CONTENT_HANDLER_APP_H_
|
|
|
|
#include <memory>
|
|
#include <thread>
|
|
#include <unordered_set>
|
|
|
|
#include "apps/modular/lib/app/application_context.h"
|
|
#include "apps/modular/services/application/application_runner.fidl.h"
|
|
#include "flutter/content_handler/application_controller_impl.h"
|
|
#include "lib/ftl/macros.h"
|
|
|
|
namespace flutter_runner {
|
|
|
|
class App : public modular::ApplicationRunner {
|
|
public:
|
|
App();
|
|
~App();
|
|
|
|
// |modular::ApplicationRunner| implementation:
|
|
|
|
void StartApplication(modular::ApplicationPackagePtr application,
|
|
modular::ApplicationStartupInfoPtr startup_info,
|
|
fidl::InterfaceRequest<modular::ApplicationController>
|
|
controller) override;
|
|
|
|
void Destroy(ApplicationControllerImpl* controller);
|
|
|
|
private:
|
|
void StopThreads();
|
|
|
|
std::unique_ptr<modular::ApplicationContext> context_;
|
|
std::thread gpu_thread_;
|
|
std::thread io_thread_;
|
|
|
|
fidl::BindingSet<modular::ApplicationRunner> runner_bindings_;
|
|
|
|
std::unordered_map<ApplicationControllerImpl*,
|
|
std::unique_ptr<ApplicationControllerImpl>>
|
|
controllers_;
|
|
|
|
FTL_DISALLOW_COPY_AND_ASSIGN(App);
|
|
};
|
|
|
|
} // namespace flutter_runner
|
|
|
|
#endif // FLUTTER_CONTENT_HANDLER_APP_H_
|