blob: a7e9b72dd5ca568bab089372b05bba6a7d61b184 [file] [log] [blame]
// Copyright 2015 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.
#include "components/mus/android_loader.h"
#include "components/mus/mus_app.h"
#include "mojo/application/public/cpp/application_impl.h"
namespace mus {
AndroidLoader::AndroidLoader() {}
AndroidLoader::~AndroidLoader() {}
void AndroidLoader::Load(
const GURL& url,
mojo::InterfaceRequest<mojo::Application> application_request) {
DCHECK(application_request.is_pending());
app_.reset(new mojo::ApplicationImpl(new MandolineUIServicesApp,
std::move(application_request)));
}
} // namespace mus