提交 14fb7290 编写于 作者: S Simon Fels

Fix compile errors after rebase

上级 3fededab
...@@ -166,9 +166,9 @@ anbox::cmds::SessionManager::SessionManager(const BusFactory &bus_factory) ...@@ -166,9 +166,9 @@ anbox::cmds::SessionManager::SessionManager(const BusFactory &bus_factory)
std::shared_ptr<wm::Manager> window_manager; std::shared_ptr<wm::Manager> window_manager;
if (single_window_) if (single_window_)
window_manager = std::make_shared<wm::SingleWindowManager>(policy, display_frame, app_mgr); window_manager = std::make_shared<wm::SingleWindowManager>(policy, display_frame, app_db);
else else
window_manager = std::make_shared<wm::MultiWindowManager>(policy, android_api_stub, app_mgr); window_manager = std::make_shared<wm::MultiWindowManager>(policy, android_api_stub, app_db);
auto gl_server = std::make_shared<graphics::GLRendererServer>( auto gl_server = std::make_shared<graphics::GLRendererServer>(
graphics::GLRendererServer::Config{gles_driver_, single_window_}, window_manager); graphics::GLRendererServer::Config{gles_driver_, single_window_}, window_manager);
......
...@@ -15,6 +15,7 @@ ...@@ -15,6 +15,7 @@
* *
*/ */
#include "anbox/application/database.h"
#include "anbox/wm/multi_window_manager.h" #include "anbox/wm/multi_window_manager.h"
#include "anbox/platform/policy.h" #include "anbox/platform/policy.h"
#include "anbox/bridge/android_api_stub.h" #include "anbox/bridge/android_api_stub.h"
......
...@@ -27,7 +27,7 @@ ...@@ -27,7 +27,7 @@
namespace anbox { namespace anbox {
namespace wm { namespace wm {
SingleWindowManager::SingleWindowManager(const std::shared_ptr<platform::Policy> &policy, SingleWindowManager::SingleWindowManager(const std::shared_ptr<platform::Policy> &policy,
const graphics::Rect &window_size const graphics::Rect &window_size,
const std::shared_ptr<application::Database> &app_db) const std::shared_ptr<application::Database> &app_db)
: platform_policy_(policy), window_size_(window_size), app_db_(app_db) {} : platform_policy_(policy), window_size_(window_size), app_db_(app_db) {}
......
...@@ -36,7 +36,7 @@ class Window; ...@@ -36,7 +36,7 @@ class Window;
class SingleWindowManager : public Manager { class SingleWindowManager : public Manager {
public: public:
SingleWindowManager(const std::shared_ptr<platform::Policy> &policy, SingleWindowManager(const std::shared_ptr<platform::Policy> &policy,
const graphics::Rect &window_size const graphics::Rect &window_size,
const std::shared_ptr<application::Database> &app_db); const std::shared_ptr<application::Database> &app_db);
~SingleWindowManager(); ~SingleWindowManager();
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册